/* a17d minimal landing styles */
:root {
  color-scheme: light dark;
  --bg: #0b0b0c;
  --fg: #e8e8ea;
  --muted: #a8a8ad;
  --accent: #7ea6ff;
  --ring: color-mix(in oklab, var(--accent) 55%, white 45%);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #fafafa;
    --fg: #0b0b0c;
    --muted: #5a5a5f;
    --accent: #3156ff;
    --ring: color-mix(in oklab, var(--accent) 35%, black 65%);
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, Noto Sans, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.wrap {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  place-items: center;
  gap: 2rem;
  padding: 2.5rem 1.25rem;
}

.brand { text-align: center; }
.wordmark {
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 5vw, 40px);
}
.tag {
  margin: 0.25rem 0 0;
  color: var(--muted);
  font-size: clamp(14px, 2.2vw, 16px);
}

.hero {
  width: min(90vw, 720px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.25));
}

.meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--fg) 14%, transparent);
  background: transparent;
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}
.cta:hover { transform: translateY(-1px); background: color-mix(in oklab, var(--fg) 4%, transparent); }
.cta:focus-visible {
  outline: none;
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--ring) 40%, transparent);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .cta { transition: none; }
}

