:root {
  --bg: #0b0705;
  --bg-2: #1a0d06;
  --ember: #f28c28;
  --ember-hi: #ffb347;
  --text: #f4ede6;
  --muted: #b8a89a;
  --line: rgba(255, 179, 71, 0.18);
  --max: 62rem;
}
* { box-sizing: border-box; }
html { color-scheme: dark; }
body {
  margin: 0;
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(120% 70% at 50% -10%, #3a1a08 0%, var(--bg-2) 45%, var(--bg) 100%) fixed;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ember-hi); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem; }

header.top { padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
header.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .65rem; color: var(--text); font-weight: 600; letter-spacing: .01em; }
.brand img { width: 34px; height: 34px; border-radius: 8px; }
nav a { color: var(--muted); margin-left: 1.25rem; font-size: .95rem; }
nav a:hover { color: var(--text); }

.hero { padding: 4.5rem 0 3rem; text-align: center; }
.hero img.icon { width: 132px; height: 132px; border-radius: 30px; box-shadow: 0 18px 50px rgba(242, 140, 40, .28); }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.05; margin: 1.4rem 0 .6rem; letter-spacing: -.02em; }
.hero p.lede { font-size: clamp(1.1rem, 2.4vw, 1.35rem); color: var(--muted); max-width: 38rem; margin: 0 auto 1.6rem; }
.badge { display: inline-block; padding: .55rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; color: var(--ember-hi); font-weight: 600; font-size: .95rem; background: rgba(242, 140, 40, .08); }
.shots { display: flex; justify-content: center; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin: 3rem 0 1rem; }
.shots figure { margin: 0; text-align: center; }
.shots img { display: block; border-radius: 22px; box-shadow: 0 20px 60px rgba(0,0,0,.55); }
.shots .watch img { width: 220px; }
.shots .phone img { width: 230px; }
.shots figcaption { color: var(--muted); font-size: .9rem; margin-top: .7rem; }

section { padding: 3rem 0; border-top: 1px solid var(--line); }
section h2 { font-size: 1.7rem; letter-spacing: -.01em; margin: 0 0 1.6rem; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.4rem 2rem; }
.feature h3 { margin: 0 0 .35rem; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--muted); }
.feature .k { display: block; line-height: 0; margin-bottom: .6rem; }
/* Inline SVG rather than glyphs: text symbols and emoji rendered as a mix of
   orange text and full-colour emoji depending on platform. */
.feature .k svg { width: 30px; height: 30px; fill: none; stroke: var(--ember); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.prose { max-width: 44rem; }
.prose h2 { font-size: 1.35rem; margin: 2.2rem 0 .7rem; }
.prose h3 { font-size: 1.05rem; margin: 1.6rem 0 .4rem; }
.prose p, .prose li { color: #e2d8cf; }
.prose ul { padding-left: 1.2rem; }
.prose .meta { color: var(--muted); font-size: .95rem; }
.prose table { border-collapse: collapse; width: 100%; font-size: .97rem; margin: 1rem 0; }
.prose th, .prose td { text-align: left; padding: .55rem .6rem; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose th { color: var(--muted); font-weight: 600; }
.callout { border-left: 3px solid var(--ember); padding: .6rem 1rem; background: rgba(242, 140, 40, .07); border-radius: 0 10px 10px 0; margin: 1.2rem 0; }

footer.bottom { border-top: 1px solid var(--line); padding: 2rem 0 3rem; color: var(--muted); font-size: .92rem; }
footer.bottom .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 1.5rem; }
footer.bottom a { color: var(--muted); }
footer.bottom a:hover { color: var(--text); }

@media (max-width: 640px) {
  body { font-size: 16px; }
  nav a { margin-left: .9rem; }
  .hero { padding-top: 3rem; }
  .shots { gap: 1.4rem; }
  .shots .watch img { width: 180px; }
  .shots .phone img { width: 200px; }

  /* Single column under a centered hero: left-aligned blocks read as the
     page being off-center, so center the marketing sections on phones.
     Long-form pages (.prose) stay left-aligned for readability. */
  section h2, .feature, .requirements { text-align: center; }
  .features { gap: 2rem; }
  .feature .k { margin-bottom: .4rem; }
  .requirements { margin: 0 auto; }
  footer.bottom .wrap { flex-direction: column; align-items: center; text-align: center; }
}
