/* PromptMe landing page — dark, quiet chrome to match the app. */

:root {
  --bg: #000;
  --panel: #0e0e10;
  --line: #26262a;
  --ink: #f5f5f7;
  --ink-dim: #a1a1a6;
  --accent: #4794ff; /* OperatorCanvasStroke.playbackBlue */
  --measure: 46rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.6 -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* MARK: - Hero */

.hero {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 6rem 1.5rem 3rem;
  text-align: center;
}

.hero__icon {
  width: 112px;
  height: 112px;
  margin-bottom: 1.75rem;
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
}

.hero__lede {
  margin: 0 auto 2.5rem;
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-dim);
}

.hero__meta {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-dim);
}

.hero__meta .dot {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* MARK: - Download button */

.button {
  display: inline-block;
  padding: 0.95rem 2.25rem;
  border-radius: 980px;
  background: var(--accent);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.button:hover {
  filter: brightness(1.08);
}

.button:active {
  transform: scale(0.985);
}

.button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* MARK: - Screenshot */

.shot {
  max-width: 68rem;
  margin: 1rem auto 5rem;
  padding: 0 1.5rem;
}

.shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgb(0 0 0 / 70%);
}

/* MARK: - Features */

.features {
  display: grid;
  gap: 2.5rem 3rem;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  max-width: 62rem;
  margin: 0 auto 5rem;
  padding: 0 1.5rem;
}

.feature h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.feature p {
  margin: 0;
  color: var(--ink-dim);
  font-size: 1rem;
}

/* MARK: - Install */

.install {
  max-width: var(--measure);
  margin: 0 auto 5rem;
  padding: 2rem 2.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.install h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.install ol {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--ink-dim);
}

.install li + li {
  margin-top: 0.4rem;
}

.install strong {
  color: var(--ink);
  font-weight: 600;
}

/* MARK: - Footer */

.footer {
  padding: 2.5rem 1.5rem 4rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.875rem;
}

.footer p {
  margin: 0.25rem 0;
}

.footer__fine {
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .button {
    transition: none;
  }
}
