/* ══════════════════════════════════════
   HERO — signature compass rose behind the copy
   ══════════════════════════════════════ */
.hero {
  padding-block: var(--space-xl) var(--space-2xl);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__copy h1 { margin-bottom: var(--space-sm); }
.hero__copy h1 .accent { color: var(--cyan); }
.hero__copy h1 .highlight-line {
  display: block; font-size: clamp(1.05rem, 2.3vw, 1.4rem);
  font-family: var(--font-mono); color: var(--brass);
  font-weight: 500; margin-top: .6rem; letter-spacing: -.01em;
}
.hero__lede { color: var(--ink-400); font-size: 1.05rem; margin-bottom: var(--space-md); max-width: 54ch; }
.hero__cta { display: flex; flex-direction: column; gap: .85rem; }
.hero__microcopy { font-size: .8rem; color: var(--ink-600); font-family: var(--font-mono); letter-spacing: .02em; }
.hero__stats { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: var(--space-md); }

/* Signature element: large rendered compass rose, not a screenshot —
   gives the marketing page its own visual identity distinct from the
   app UI itself, while echoing the same instrument language. */
.hero__rose-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 1; width: 100%; max-width: 460px; margin-inline: auto;
}
.hero__rose {
  width: 100%; height: 100%;
  animation: rose-spin 90s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .hero__rose { animation: none; }
}
@keyframes rose-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__rose-needle {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero__bearing-readout {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-family: var(--font-mono);
}
.hero__bearing-readout .deg { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; color: var(--ink-100); }
.hero__bearing-readout .dir { font-size: .85rem; color: var(--cyan); letter-spacing: .1em; }

/* ══════════════════════════════════════
   TRUST / WHY STRIP
   ══════════════════════════════════════ */
.why {
  padding-block: var(--space-lg);
  border-block: 1px solid var(--hairline);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.why__item { display: flex; gap: 1rem; align-items: flex-start; }
.why__item p { color: var(--ink-400); font-size: .9rem; max-width: none; }
