/* ============================================================
   snap.css — section sizing + entrance animations.
   NO scroll-snap: free, native momentum scrolling (like Linear /
   Stripe / Vercel). Sections fill the screen where it looks good,
   but never lock the scroll. Reveal animations carry the polish.
   ============================================================ */

/* Smooth scrolling ONLY for anchor-link jumps, so it never fights
   native trackpad / mouse-wheel momentum. */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within { scroll-behavior: smooth; }
}

/* "One section per screen" feel WITHOUT scroll-snap (which fights the
   trackpad). The illusion comes from two things only:
     1. every section is min-height:100vh and flex-centers its content, so
        each section "owns" a screen;
     2. each section's inner content fades + scales IN as it enters and OUT
        as it leaves (see .reveal in components.css + snap.js).
   Native scroll is left completely untouched. */

.snap {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(72px, 9vh, 128px);
}

/* Tall content sections use min-height (never height), so they simply grow
   past the viewport and scroll normally — nothing clips, nothing traps. */
.snap.section {
  align-items: start;
}
.snap.section.local,
.snap.section.how,
.snap.section.who,
.snap.section.trust-sec,
.snap.section.about {
  align-items: center;
}

.snap.hero,
.snap.pitch,
.snap.cta {
  padding-block: clamp(56px, 7vh, 100px);
}

/* Mobile: everything sizes to content, comfortable padding. */
@media (max-width: 780px), (max-height: 640px) {
  .snap { min-height: auto; }
  .snap.section.local,
  .snap.section.how,
  .snap.section.who,
  .snap.section.trust-sec { min-height: auto; }
}

/* ---------- HERO VIDEO ---------- */
.hero__video {
  width: clamp(170px, 26vw, 360px);
  height: auto;
  margin-inline: auto;
  margin-bottom: 8px;
  /* the webm is transparent; let it sit on the clouds */
  filter: drop-shadow(0 20px 40px rgba(40, 30, 15, 0.18));
}

/* Hero "does more" chips */
.hero__chips {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero__chips li {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-soft);
  padding: 7px 15px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero__scroll {
  display: inline-flex;
  margin-top: 34px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  font-size: 1.1rem;
}

/* ---------- MEET LYRE (section 2) ---------- */
.pitch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  max-width: 1040px;
  width: 100%;
}
.pitch__left {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pitch__right {
  text-align: left;
}
@media (max-width: 860px) {
  .pitch__grid { grid-template-columns: 1fr; gap: 28px; }
  .pitch__right { max-width: 560px; margin-inline: auto; }
}
.pitch__video {
  width: clamp(170px, 20vw, 300px);
  height: auto;
  margin-inline: auto;
  filter: drop-shadow(0 18px 36px rgba(40, 30, 15, 0.18));
}
.pitch__kicker {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.pitch__pun {
  margin-top: 10px;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--text-dim);
}
.pitch__pun em { color: var(--gold); font-style: italic; }
.pitch__lead {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 26px;
}

/* Three scannable beats */
.pitch__beats {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  width: 100%;
}
.pitch__beats li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.pitch__beats strong { color: var(--text); font-weight: 700; }
.pitch__beat-ico {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(217, 138, 43, 0.12);
  font-size: 1rem;
}

/* Full paragraph kept, but demoted to quiet supporting detail. */
.pitch__body {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-dim);
}
.pitch__body strong { color: var(--text-soft); }
