/* amuse-bouche — homepage (simple, centered). Other pages use their own inline styles. */

:root {
  --accent: #6155F5;
  --ink: #111113;
  --muted: #8a8a8e;
}

* { box-sizing: border-box; }

body.page-home {
  margin: 0;
  /* System font → SF Pro on Apple platforms. */
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", system-ui, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.home {
  flex: 1 0 auto;
  width: 100%;
  margin: 0 auto;
  /* 24px side gutters — the hero image fills to these edges. */
  padding: clamp(2.5rem, 7vw, 5rem) 24px 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Keep the text block comfortably narrow + centered even though .home is full-width. */
.wordmark, .tagline, .btn-download { max-width: 900px; }

/* Wordmark: "amuse" heavy + "bouche" regular, inline, tight. */
.wordmark {
  margin: 0;
  line-height: 1;
  letter-spacing: -0.03em;
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  color: var(--ink);
}
.wordmark .w-bold  { font-weight: 800; }
.wordmark .w-light { font-weight: 400; }

/* Tagline: small, muted, centered — the verb types + backspaces. */
.tagline {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
  line-height: 1.5;
  max-width: 34ch;
}
.verb-wrap { white-space: nowrap; }
.verb { color: var(--ink); font-weight: 500; }
.caret {
  display: inline-block;
  width: 1.5px;
  height: 1em;
  background: currentColor;
  margin-left: 2px;
  vertical-align: -0.12em;
  animation: caret-blink 1s step-end infinite;
}
@keyframes caret-blink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .caret { animation: none; } }

/* Download pill. */
.btn-download {
  display: inline-block;
  margin-top: 1.7rem;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(97, 85, 245, 0.34);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-download:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(97, 85, 245, 0.42);
}

/* Collage — the pre-composed hero image, centered. */
.home-hero {
  display: block;
  width: 100%;      /* fills .home's content box → viewport minus the 24px gutters */
  max-width: none;
  height: auto;
  margin: clamp(1.75rem, 4.5vw, 3rem) auto 0;
}

/* Footer nav. */
.site-footer {
  flex-shrink: 0;
  display: flex;
  gap: 1.6rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1.75rem 1.5rem 2.25rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.site-footer a:hover { color: var(--ink); }
