/* Fade System page only. Everything else on this page comes from
 * conversion-websites.css; this file adds the one thing that page never needed,
 * which is a wall of real vertical client reels with their real view counts.
 *
 * The videos are Miguel's own work, already in /videos/, and every number beside
 * them was measured off TikTok on 2026-08-08. Nothing here is illustrative. */

.fs-reels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  gap: 14px;
}
@media (min-width: 900px) {
  .fs-reels {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  /* The 40,900 one earns a double-width slot. */
  .fs-reel--lead {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.fs-reel {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 18px;
  background: #0d0d0d;
  box-shadow:
    0 18px 40px rgba(10, 10, 10, 0.18),
    0 3px 10px rgba(10, 10, 10, 0.1);
}
.fs-reel video,
.fs-reel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.fs-reel__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}
/* Views sit on a scrim, never raw on the footage. */
.fs-reel__meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px 12px 12px;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0));
  color: #fff;
}
.fs-reel__views {
  display: block;
  font-size: clamp(20px, 1.1rem + 0.8vw, 30px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fs-reel__label {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--cw-mono);
  font-size: 11px;
}
.fs-reel__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.fs-reel__play span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-size: 15px;
  padding-left: 3px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease;
}
.fs-reel__play:hover span {
  transform: scale(1.08);
}
.fs-reel.is-playing .fs-reel__play span {
  opacity: 0;
}

/* The single number that makes the whole page land. */
.fs-median {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 18px;
  margin-top: 26px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}
.fs-median div {
  text-align: center;
}
.fs-median b {
  display: block;
  font-size: clamp(30px, 1.4rem + 2.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.fs-median span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--cw-mono);
  font-size: 12px;
}
.fs-median em {
  color: #d6fd70;
  font-style: normal;
}

/* Timeline of the shoot day. */
.fs-day {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 14px;
  margin-top: 30px;
}
.fs-hour {
  padding: 22px 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(17, 17, 17, 0.04);
}
.fs-hour__when {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--cw-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.fs-hour h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.2;
}
.fs-hour p {
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 15px;
}

/* On a phone the reel grid drops to one or two columns, so each tile is roughly
   three times the width it has on desktop. 11px is sized for the six-across
   desktop grid and is needlessly small once the tile is that wide, and this
   line is what names the client and the result. */
@media (max-width: 560px) {
  .fs-reel__label {
    font-size: 12.5px;
  }
}

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

/* Second wall. Unlike the Statement reels, these files cannot be mapped to a
 * specific TikTok post with confidence, so they carry a description of what the
 * video is and the numbers sit at account level where they are verifiable.
 * Never put a view count on a reel I cannot trace to that exact post. */
.fs-wall2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 12px;
}
@media (min-width: 900px) {
  .fs-wall2 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
.fs-wall2 .fs-reel__meta {
  padding: 26px 10px 10px;
}
.fs-wall2 .fs-reel__label {
  font-size: 10.5px;
  line-height: 1.35;
}
.fs-client {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.fs-client span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--cw-mono);
  font-size: 12.5px;
}
.fs-client b {
  color: #d6fd70;
}

/* Real comments off the client videos. Miguel's own words on camera: "you want
 * to see the people asking for the prices, you want to see people asking to
 * book." Nobody can fake these, which is the point. */
.fs-says {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 12px;
  margin-top: 26px;
}
.fs-say {
  padding: 18px 18px 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: #fff;
}
.fs-say p {
  margin: 0 0 10px;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}
.fs-say span {
  color: rgba(17, 17, 17, 0.55);
  font-family: var(--cw-mono);
  font-size: 11.5px;
}
.fs-say--ask {
  border-color: rgba(17, 17, 17, 0.16);
  background: #d6fd70;
}
.fs-say--ask p {
  font-weight: 600;
}
.fs-say--ask span {
  color: rgba(17, 17, 17, 0.62);
}

.fs-saygroup {
  margin: 34px 0 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.fs-saygroup em {
  color: rgba(17, 17, 17, 0.45);
  font-style: normal;
  font-family: var(--cw-mono);
  font-size: 13px;
}
.fs-say--booked {
  border-color: rgba(17, 17, 17, 0.9);
  background: #131313;
}
.fs-say--booked p {
  color: #fff;
  font-weight: 600;
}
.fs-say--booked span {
  color: rgba(255, 255, 255, 0.55);
}
.fs-say--where {
  background: #fff;
}

/* Full engagement under a reel, not just views. Miguel sent verified Instagram
 * screenshots on 2026-08-08 with likes, comments, reposts and sends, so the
 * page shows all of it rather than a single number. */
.fs-reel__eng {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 5px;
}
.fs-reel__eng b {
  color: #fff;
  font-family: var(--cw-mono);
  font-size: 10.5px;
  font-weight: 500;
  opacity: 0.82;
}

/* Same quotes on the websites page, on its lighter surface. */
.cwq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 12px;
  margin-top: 26px;
}
.cwq {
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: #fff;
}
.cwq p {
  margin: 0 0 10px;
  color: #111;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.4;
}
.cwq span {
  color: rgba(17, 17, 17, 0.5);
  font-family: var(--cw-mono);
  font-size: 11.5px;
}

/* "Anywhere" is a word, not a figure, so it needs to sit smaller than a numeral
   or it overflows its tile on a phone. */
.cw-stat__num:not(:has(+ .cw-stat__label:empty)) {
  overflow-wrap: anywhere;
}
.cw-stats .cw-stat__num {
  font-size: clamp(28px, 1.4rem + 1.8vw, 46px);
}

/* Actual TikTok screenshots. Typed quotes can be invented; a screenshot with
   usernames, avatars and the comment count cannot. Miguel asked for these
   specifically and he was right that they land harder. */
.fs-shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: 14px;
  margin-top: 26px;
}
.fs-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: #000;
}
.fs-shot img {
  display: block;
  width: 100%;
  height: auto;
}
.fs-shot figcaption {
  padding: 11px 13px 13px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--cw-mono);
  font-size: 11.5px;
}
.fs-shot figcaption b {
  color: #d6fd70;
}

/* The range of trades, so a pool builder does not assume this is a barber thing. */
.fs-trades {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 12px;
  margin-top: 26px;
}
.fs-trade {
  margin: 0;
}
.fs-trade img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: #fff;
}
.fs-trade figcaption {
  margin-top: 9px;
}
.fs-trade b {
  display: block;
  font-size: 15px;
}
/* The city under each trade photo is the proof that I actually drove there, so
   it has to be readable. 11.5px mono measured under the phone floor. */
.fs-trade span {
  display: block;
  margin-top: 2px;
  color: rgba(17, 17, 17, 0.55);
  font-family: var(--cw-mono);
  font-size: 12.5px;
}
