/* ============================================================
   Bootheo — section layouts (part 2)
   Screenshots · Dashboard frame · Who · Beta offer · Social · FAQ · Closing
   ============================================================ */

/* ============================================================
   MOBILE SCREENSHOTS  —  angled stack (desktop) / scroll strip (≤640)
   ============================================================ */
.shots { background: var(--slate-950); color: var(--slate-50); overflow: hidden; }
.shots__caption {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--mute-dark);
  max-width: 40ch;
  margin-left: auto; margin-right: auto;
}
.shots__caption em { font-style: normal; color: var(--slate-50); font-weight: 500; }

/* — Baseline (≤640px): horizontal snap strip, NO rotation.
     This is the 390px-first layout; angling only switches on at ≥760. */
.shots__rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 4px 22px;
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  scrollbar-width: none;
}
.shots__rail::-webkit-scrollbar { display: none; }
.shots__phone {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 248px;
}

/* — Angled overlapping fan (≥760px) */
@media (min-width: 760px) {
  .shots__rail {
    overflow: visible;
    justify-content: center;
    align-items: center;
    padding: 64px 0 56px;
    margin: 0;
    gap: 0;
  }
  .shots__phone {
    width: 260px;
    margin-left: -56px;
    transform-origin: center bottom;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), z-index 0s;
    filter: drop-shadow(0 40px 70px rgba(0,0,0,0.55));
  }
  .shots__phone:first-child { margin-left: 0; }
  .shots__phone:nth-child(1) { transform: rotate(-9deg) translateY(18px); z-index: 1; }
  .shots__phone:nth-child(2) { transform: rotate(-3deg) translateY(0);   z-index: 2; }
  .shots__phone:nth-child(3) { transform: rotate(3deg)  translateY(0);   z-index: 3; }
  .shots__phone:nth-child(4) { transform: rotate(9deg)  translateY(18px); z-index: 2; }
  .shots__rail:hover .shots__phone { filter: drop-shadow(0 30px 55px rgba(0,0,0,0.45)); }
  .shots__phone:hover { transform: rotate(0deg) translateY(-14px) scale(1.04) !important; z-index: 10 !important; }
}
@media (min-width: 1040px) {
  .shots__phone { width: 286px; margin-left: -60px; }
}

/* ============================================================
   WEB DASHBOARD  —  framed, full-width light mock
   ============================================================ */
.dash__head { max-width: 26ch; }
.dash__url {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--bolt-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.dash__frame {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 40px 90px rgba(13,17,23,0.14);
  background: #fff;
}
.dash__shot { display: block; width: 100%; height: auto; }
.browserbar {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--border-light);
}
.browserbar .dots { display: flex; gap: 7px; }
.browserbar .dots span { width: 11px; height: 11px; border-radius: 50%; background: #cdd2db; }
.browserbar .addr {
  flex: 1 1 auto;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 7px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--slate-500);
  letter-spacing: 0.02em;
  text-align: center;
}

/* ============================================================
   WORKS WITH YOU  (dark · typographic)
   ============================================================ */
.works .headline { max-width: 18ch; }
.works__body { margin-top: 22px; max-width: 56ch; }
.works__body p { font-size: 16.5px; line-height: 1.6; color: var(--mute-dark); margin: 0 0 16px; }
.works__emph {
  margin-top: 28px;
  max-width: 24ch;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--slate-50);
}
@media (min-width: 760px) {
  .works__emph { font-size: 26px; }
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who .headline { max-width: 16ch; }
.who__body { margin-top: 22px; max-width: 54ch; }
.who__body p { font-size: 16.5px; line-height: 1.6; color: var(--mute-light); margin: 0 0 16px; }
.who__tags {
  margin-top: 26px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.who__tags span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--slate-700);
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  padding: 8px 14px;
}

/* ============================================================
   BETA OFFER  (dark)
   ============================================================ */
.beta .headline { max-width: 14ch; }
.beta__sub { margin-top: 18px; max-width: 46ch; font-size: 16.5px; color: var(--mute-dark); }
.beta__sub strong { color: var(--bolt-400); font-weight: 600; }

.tiers {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.tier {
  background: var(--slate-900);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 24px 22px;
  position: relative;
}
.tier--featured { border-color: rgba(95,163,255,0.5); }
.tier__flag {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bolt-400);
}
.tier__name { font-size: 21px; font-weight: 600; letter-spacing: -0.02em; }
.tier__seats {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--mute-dark);
  text-transform: uppercase;
}
.tier__rule { height: 1px; background: var(--border-dark); margin: 20px 0; }
.tier__price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.tier__founding {
  font-family: var(--font-mono);
  font-size: 34px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--slate-50);
}
.tier__per { font-size: 13px; color: var(--mute-dark); }
.tier__full {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--slate-500);
  text-decoration: line-through;
  text-decoration-color: rgba(122,130,148,0.7);
}
.tier__save {
  margin-top: 12px;
  font-size: 13px;
  color: var(--bolt-400);
  font-weight: 500;
}
.beta__fine {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.04em;
  color: var(--mute-dark);
}
.beta__form-wrap { margin-top: 34px; }

/* ============================================================
   SOCIAL PROOF
   ============================================================ */
.social { text-align: left; }
.social .headline { max-width: 16ch; }
.social__body { margin-top: 22px; max-width: 52ch; }
.social__body p { font-size: 16.5px; line-height: 1.6; color: var(--mute-light); margin: 0; }
.social__body strong { color: var(--slate-950); font-weight: 600; }

/* Testimonial grid — built but hidden until real quotes land.
   Switch on by removing [hidden] from .testimonials in the HTML. */
.testimonials {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.quote {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 24px 22px;
}
.quote__mark { font-family: var(--font-mono); color: var(--bolt-500); font-size: 22px; line-height: 1; }
.quote__text { margin: 10px 0 18px; font-size: 16px; line-height: 1.5; letter-spacing: -0.01em; }
.quote__who { display: flex; align-items: center; gap: 11px; }
.quote__av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 13px; color: var(--slate-700);
  flex: 0 0 auto;
}
.quote__name { font-size: 13.5px; font-weight: 600; }
.quote__biz { font-size: 12px; color: var(--mute-light); margin-top: 1px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { margin-top: 36px; display: grid; grid-template-columns: 1fr; gap: 0; }
.faq__item {
  border-top: 1px solid var(--border-light);
  padding: 6px 0;
}
.faq__item:last-child { border-bottom: 1px solid var(--border-light); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 44px 18px 0;
  position: relative;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  position: absolute; right: 6px; top: 50%;
  width: 11px; height: 11px;
  border-right: 2px solid var(--slate-400);
  border-bottom: 2px solid var(--slate-400);
  transform: translateY(-65%) rotate(45deg);
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq__item p {
  margin: 0;
  padding: 0 44px 20px 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--mute-light);
  max-width: 64ch;
}

/* ============================================================
   CLOSING CTA  (dark)
   ============================================================ */
.closing { text-align: center; position: relative; overflow: hidden; }
.closing::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 50% -20%, rgba(95,163,255,0.16), transparent 60%);
  pointer-events: none;
}
.closing__inner { position: relative; }
.closing .display { max-width: 18ch; margin: 0 auto; }
.closing .signup, .closing .signup-success { margin-left: auto; margin-right: auto; }
.closing .signup-note { text-align: center; }

@media (min-width: 600px) {
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(2, 1fr); }
  .faq__grid { column-gap: 56px; }
}

@media (min-width: 960px) {
  .tiers { gap: 18px; }
  .testimonials { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .beta__form-wrap .signup { margin-left: 0; }
}
