/* Shared across every page. Kept in one file so a design change lands
   everywhere at once instead of drifting page by page. */
:root { color-scheme: dark; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(160deg, #141416 0%, #1c1c1e 65%, #221418 100%);
  color: #f2f2f7; min-height: 100vh; display: flex; justify-content: center;
}
main { max-width: 680px; padding: 64px 24px; width: 100%; }
.bars { display: flex; align-items: flex-end; gap: 8px; height: 64px; margin-bottom: 28px; }
.bars span { width: 11px; border-radius: 6px; animation: pulse 1.6s ease-in-out infinite alternate; }
.bars span:nth-child(1){height:34%;background:#f0577f;animation-delay:.0s}
.bars span:nth-child(2){height:72%;background:#e8446f;animation-delay:.15s}
.bars span:nth-child(3){height:100%;background:#d72d66;animation-delay:.3s}
.bars span:nth-child(4){height:55%;background:#b81f52;animation-delay:.45s}
.bars span:nth-child(5){height:42%;background:#9c1a46;animation-delay:.6s}
@keyframes pulse { to { transform: scaleY(.45); } }
@media (prefers-reduced-motion: reduce) { .bars span { animation: none; } }

h1 { font-size: 38px; line-height: 1.12; margin-bottom: 14px; letter-spacing: -.5px; }
.tagline { color: rgba(255,255,255,.6); font-size: 19px; margin-bottom: 26px; }
.cta {
  display: inline-block; background: #d72d66; color: #fff; font-weight: 600;
  font-size: 17px; padding: 14px 26px; border-radius: 14px; text-decoration: none;
  box-shadow: 0 6px 24px rgba(215,45,102,.4);
}
.cta:hover { background: #e8446f; }
.sub { display: block; margin-top: 10px; font-size: 13px; color: rgba(255,255,255,.45); }
h2 { font-size: 21px; margin: 44px 0 10px; color: #f0577f; }
h3 { font-size: 17px; margin: 26px 0 6px; color: #f2f2f7; }
p, li { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.78); }
ul, ol { padding-left: 20px; margin-top: 8px; }
li { margin-bottom: 6px; }
a { color: #f0577f; }
strong { color: #f2f2f7; }
footer { margin-top: 60px; font-size: 13px; color: rgba(255,255,255,.4); }
footer a { color: rgba(255,255,255,.55); }

/* Breadcrumb back to home on inner pages */
.crumb { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 24px; display: block; }
.crumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

/* Pull quote used to state the falsifiable claim */
.claim {
  border-left: 3px solid #d72d66; padding: 12px 0 12px 18px; margin: 28px 0;
  font-size: 18px; color: #f2f2f7; line-height: 1.5;
}

/* Screenshot figures */
figure { margin: 28px 0; }
figure img { width: 100%; border-radius: 14px; display: block; }
figcaption { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 8px; }

/* Fact table for the machine-readable page */
table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 15px; }
th, td { text-align: left; padding: 9px 8px; border-bottom: 1px solid rgba(255,255,255,.1); vertical-align: top; }
th { color: rgba(255,255,255,.5); font-weight: 500; width: 38%; }
td { color: rgba(255,255,255,.85); }

/* Related links block at the end of each answer page */
.more { margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
.more a { display: block; margin-bottom: 8px; font-size: 15px; }
