/* Landing pages (one per occasion). Deliberately its own small stylesheet rather than
   nightward.css: those pages exist to load fast and rank, and the homepage stylesheet carries
   a great deal of animation and layout they never use. Page weight is a ranking factor and
   this is the cheapest place to respect it. */

:root {
  --ground: #0a0e1c; --panel: #141c31; --panel-2: #0f1626;
  --line: #25314f; --line-2: #33436a;
  --accent: #ecc178; --accent-2: #f9e2b0;
  --text: #eef1fc; --text-2: #cfd7ec; --muted: #94a0bd;
  --font: "Quicksand", "Segoe UI", -apple-system, system-ui, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--ground); color: var(--text);
  font-family: var(--font); line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }

/* ---- chrome ---- */
.lp-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: color-mix(in srgb, var(--ground) 92%, transparent);
  backdrop-filter: blur(8px); z-index: 5;
}
.lp-brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  color: var(--text); font-weight: 700; letter-spacing: .01em; }
.lp-nav { display: flex; gap: 18px; font-size: .86rem; }
.lp-nav a { color: var(--muted); text-decoration: none; }
.lp-nav a:hover { color: var(--text); }

/* ---- article ---- */
.lp { max-width: 760px; margin: 0 auto; padding: 40px 24px 72px; }
.lp-crumb { font-size: .76rem; color: var(--muted); margin: 0 0 18px; }
.lp-crumb a { color: var(--muted); text-decoration: none; }
.lp-crumb span { opacity: .5; margin: 0 5px; }

.lp h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem); line-height: 1.2; margin: 0 0 18px;
  letter-spacing: -.015em;
}
.lp-lede { font-size: 1.06rem; color: var(--text-2); margin: 0 0 26px; }
.lp h2 {
  font-size: 1.14rem; margin: 40px 0 12px; letter-spacing: -.01em;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.lp p { margin: 0 0 16px; color: var(--text-2); }

.lp-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 26px 0 8px; }
.lp-cta {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .95rem;
  color: #241c05; background: linear-gradient(180deg, var(--accent-2), var(--accent));
  padding: 12px 22px; border-radius: 100px;
  box-shadow: 0 14px 30px -14px rgba(236, 193, 120, .8);
}
.lp-cta:hover { filter: brightness(1.06); }
.lp-note { font-size: .8rem; color: var(--muted); }

.lp-steps { margin: 0 0 8px; padding-left: 22px; }
.lp-steps li { margin-bottom: 8px; color: var(--text-2); }
.lp-steps b { color: var(--text); }

.lp-faq { margin: 0; }
.lp-faq dt { font-weight: 700; margin-top: 18px; color: var(--text); }
.lp-faq dd { margin: 6px 0 0; color: var(--text-2); }

.lp-others { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.lp-others a {
  display: block; text-decoration: none; color: var(--text-2); font-size: .88rem;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel-2);
}
.lp-others a:hover { border-color: var(--accent); color: var(--text); }

/* ---- footer ---- */
.lp-foot { border-top: 1px solid var(--line); padding: 26px 24px 40px; text-align: center; }
.lp-foot p { margin: 0 0 10px; font-size: .84rem; color: var(--muted); }
.lp-foot nav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: .78rem; }
.lp-foot nav a { color: var(--muted); text-decoration: none; }
.lp-foot nav a:hover { color: var(--text); }

@media (max-width: 560px) {
  .lp { padding: 28px 18px 56px; }
  .lp-nav { gap: 12px; font-size: .8rem; }
}
