/* =========================================================================
   SuperMoo — Industry landing pages (Travel, Schools)
   Shared components layered on tokens.css + site.css.
   Visual language mirrors the ReMoo product page (recorder card, wall,
   ticks) plus page-specific pieces: moment grid, trust placeholders.
   ========================================================================= */

/* ---- Hero split --------------------------------------------------------- */
.ind-hero { display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
@media (max-width: 960px){ .ind-hero { grid-template-columns: 1fr; } }

/* ---- Public recorder preview (mirrors ReMoo's branding preview) --------- */
.ind-rec { position: relative; aspect-ratio: 5/4; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink); box-shadow: var(--sh-lg); border: 1px solid var(--line-dk); }
.ind-rec__bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ind-rec__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,14,12,.34), rgba(15,14,12,.52)); z-index: 1; }
.ind-rec__card { position: absolute; z-index: 3; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: min(76%, 330px); background: var(--paper-2); border-radius: var(--r-md);
  padding: clamp(18px,3vw,26px); text-align: center; box-shadow: var(--sh-lg); }
.ind-rec__brand { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.ind-rec__brand .dot { width: 22px; height: 22px; border-radius: 7px; background: var(--ink); color: var(--pink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; }
.ind-rec__q { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: .01em;
  font-size: clamp(17px,2.2vw,21px); line-height: 1.05; color: var(--ink); margin-bottom: 16px; text-wrap: balance; }
.ind-rec__btn { display: inline-flex; align-items: center; gap: 9px; background: var(--pink); color: #fff;
  font-weight: 700; font-size: 14px; padding: 11px 18px; border-radius: var(--r-pill); }
.ind-rec__btn .rec { width: 9px; height: 9px; border-radius: 50%; background: #fff; }
.ind-rec__chip { position: absolute; z-index: 4; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 11px; color: #fff; background: rgba(20,16,11,.5);
  border: 1px solid rgba(255,255,255,.22); padding: 4px 10px; border-radius: var(--r-pill); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.ind-rec__chip .rec { width: 7px; height: 7px; border-radius: 50%; background: var(--pink); animation: indpulse 1.6s ease infinite; }
@keyframes indpulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.ind-rec__logo { position: absolute; z-index: 4; top: 14px; left: 14px; height: 15px; filter: invert(1) brightness(1.9); opacity: .92; }

/* consent row inside the recorder card (Schools) */
.ind-rec__consent { display: flex; align-items: flex-start; gap: 9px; text-align: left;
  margin-top: 14px; padding-top: 13px; border-top: 1px solid var(--line); }
.ind-rec__consent .box { width: 17px; height: 17px; border-radius: 5px; background: var(--pink); flex: none; position: relative; margin-top: 1px; }
.ind-rec__consent .box::after { content: ""; position: absolute; left: 5.5px; top: 2.5px; width: 4px; height: 8px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(43deg); }
.ind-rec__consent p { font-size: 11.5px; line-height: 1.45; color: var(--ink-mute); }

/* floating share-link pill */
.ind-float { position: absolute; z-index: 6; left: -14px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 9px 9px 14px; box-shadow: var(--sh-lg); max-width: 86%; }
.ind-float svg { width: 15px; height: 15px; color: var(--ink-faint); flex: none; }
.ind-float code { font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-soft); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 960px){ .ind-float { left: 12px; } }

.ind-copy { display: inline-flex; align-items: center; gap: 7px; background: var(--pink); color: #fff;
  font-weight: 700; font-size: 13px; padding: 8px 13px; border-radius: var(--r-pill); border: none; cursor: pointer; white-space: nowrap; flex: none; }
.ind-copy svg { width: 14px; height: 14px; color: #fff; }
.ind-copy.is-done { background: var(--good); }

/* ---- Numbered steps ------------------------------------------------------ */
.ind-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-7); }
@media (max-width: 820px){ .ind-steps { grid-template-columns: 1fr; } }
.ind-step { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); padding: var(--s-6); }
.ind-step__n { width: 38px; height: 38px; border-radius: 11px; background: var(--pink-wash); color: var(--pink-ink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 19px; margin-bottom: var(--s-4); }
.ind-step h3 { margin-bottom: 8px; }
.ind-step p { color: var(--ink-mute); font-size: var(--t-small); }

/* ---- Moments / touchpoints grid ----------------------------------------- */
.ind-spots { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-4); margin-top: var(--s-7); }
@media (max-width: 880px){ .ind-spots { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 540px){ .ind-spots { grid-template-columns: 1fr; } }
.ind-spot { display: flex; align-items: flex-start; gap: 13px; padding: var(--s-5);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); }
.ind-spot__ic { width: 40px; height: 40px; border-radius: 11px; background: var(--pink-wash); color: var(--pink-ink);
  display: grid; place-items: center; flex: none; }
.ind-spot__ic svg { width: 20px; height: 20px; }
.ind-spot b { display: block; font-size: 15px; font-weight: 700; line-height: 1.25; }
.ind-spot i { display: block; font-style: normal; font-size: 13px; color: var(--ink-mute); margin-top: 3px; line-height: 1.45; }
/* on the ink band */
.band-ink .ind-spot { background: var(--ink-2); border-color: var(--line-dk); }
.band-ink .ind-spot b { color: var(--on-ink); }
.band-ink .ind-spot i { color: var(--on-ink-mute); }
.band-ink .ind-spot__ic { background: rgba(255,46,136,.16); color: var(--pink); }

/* ---- Tick feature list --------------------------------------------------- */
.ind-feat-list { display: flex; flex-direction: column; gap: 12px; margin-top: var(--s-5); padding: 0; }
.ind-feat-list li { display: flex; gap: 11px; align-items: flex-start; font-size: var(--t-small); color: var(--ink-soft); list-style: none; }
.band-ink .ind-feat-list li { color: var(--on-ink-soft); }
.ind-tick { width: 22px; height: 22px; border-radius: 50%; flex: none; background: var(--pink); position: relative; margin-top: 1px; }
.ind-tick::after { content: ""; position: absolute; left: 7px; top: 5px; width: 5px; height: 9px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(43deg); }

/* ---- Testimonial wall ---------------------------------------------------- */
.ind-wall { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--s-4); margin-top: var(--s-7); }
@media (max-width: 900px){ .ind-wall { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .ind-wall { grid-template-columns: 1fr; } }
.ind-tile { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; }
.ind-tile__media { position: relative; aspect-ratio: 4/5; background: var(--ink); overflow: hidden; }
.ind-tile__media .play { position: absolute; inset: 0; margin: auto; width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink); display: grid; place-items: center; box-shadow: 0 4px 14px rgba(0,0,0,.35); }
.ind-tile__media .play svg { width: 16px; height: 16px; fill: #fff; transform: translateX(1px); }
.ind-tile__dur { position: absolute; bottom: 8px; right: 9px; font-family: var(--font-mono); font-size: 10px;
  color: #fff; background: rgba(0,0,0,.5); padding: 2px 7px; border-radius: 6px; }
.ind-tile__body { padding: 14px 14px 16px; }
.ind-tile__quote { font-size: 13.5px; line-height: 1.4; color: var(--ink-soft); font-style: italic; margin-bottom: 12px; }
.ind-tile__who { display: flex; align-items: center; gap: 9px; }
.ind-tile__av { width: 28px; height: 28px; border-radius: 50%; flex: none; background: var(--ink); color: var(--pink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; }
.ind-tile__nm { font-weight: 700; font-size: 12.5px; line-height: 1.1; }
.ind-tile__co { font-size: 11px; color: var(--ink-mute); }
.ind-fill { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---- Trust block: case stat + logo placeholders -------------------------- */
.ind-proof { display: grid; grid-template-columns: 1fr 1.35fr; gap: var(--s-4); margin-top: var(--s-7); align-items: stretch; }
@media (max-width: 880px){ .ind-proof { grid-template-columns: 1fr; } }
.ind-case { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); }
.ind-case__num { font-family: var(--font-display); font-weight: 400; font-size: clamp(58px,7vw,84px); line-height: .9; }
.ind-case__num .u { color: var(--pink); }
.ind-case p { color: var(--ink-soft); font-size: var(--t-small); max-width: 40ch; }
.ind-case .mono-tag { margin-top: auto; padding-top: var(--s-4); }

.ind-logocard { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-6); display: flex; flex-direction: column; }
.ind-logos { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-3); margin-top: var(--s-4); }
@media (max-width: 540px){ .ind-logos { grid-template-columns: repeat(2,1fr); } }
.ph-logo { height: 56px; border-radius: var(--r-sm); display: grid; place-items: center;
  background-color: var(--paper-3);
  background-image: repeating-linear-gradient(135deg, rgba(24,24,27,0.045) 0 10px, transparent 10px 20px);
  border: 1px dashed var(--line-2); }
.ph-logo span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .04em; color: var(--ink-mute); }
.ind-logocard .g2strip { margin-top: auto; padding-top: var(--s-5); }

/* ---- QR mini-card -------------------------------------------------------- */
.ind-qr { width: 116px; height: 116px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 11px; box-shadow: var(--sh-sm); flex: none; }
.ind-qr svg { width: 100%; height: 100%; display: block; }

/* media variant — photo on top (used on Schools moments) */
.ind-spot--media { flex-direction: column; align-items: stretch; gap: 0; padding: 0; overflow: hidden; }
.ind-spot--media .ind-spot__img { display: block; width: 100%; height: auto; aspect-ratio: 4/3; }
.ind-spot--media .ind-spot__txt { display: block; padding: 15px 18px 18px; }

/* ---- Split (text + visual) ----------------------------------------------- */
.ind-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: center; }
@media (max-width: 900px){ .ind-split { grid-template-columns: 1fr; } }

/* ---- Platform / pricing ink card ----------------------------------------- */
.ind-plans { display: grid; grid-template-columns: 1.2fr auto; gap: var(--s-6); align-items: center; padding: clamp(28px,4vw,48px); }
@media (max-width: 880px){ .ind-plans { grid-template-columns: 1fr; } }

/* =========================================================================
   Schools-specific pieces (hero, herd cards, versus, live embeds)
   ========================================================================= */

/* consent card shown standalone on the ink band */
.sch-consent-card { position: static; transform: none; width: min(100%, 360px); margin-inline: auto; text-align: center; }

/* live video-review embed in the hero — portrait, sized to the clip so no letterboxing */
.sch-hero__demo { width: min(100%, 380px); margin-inline: auto; }
.ind-rec--live { aspect-ratio: 3/4; border: none; }
.ind-rec__video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; background: var(--ink); }
.sch-hero__demo { position: relative; }
.sch-hero__cap { margin: 16px auto 0; font-size: 13.5px; line-height: 1.6; color: var(--on-ink-mute); max-width: 44ch; }
.sch-hero__cap b { color: var(--on-ink); font-weight: 700; }

/* full-bleed photographic hero (pinned dark in both themes) */
.sch-hero { position: relative; background: #161514; overflow: hidden; }
.sch-hero__media { position: absolute; inset: 0; width: 100%; height: 100%; display: block; border: 0; pointer-events: none; }
.sch-hero__overlay { position: relative; z-index: 1; pointer-events: none; padding-block: clamp(44px,6vw,84px);
  background: linear-gradient(90deg, rgba(15,14,12,.95) 0%, rgba(15,14,12,.84) 52%, rgba(15,14,12,.52) 100%); }
.sch-hero__overlay .ind-hero > * { pointer-events: auto; }
.sch-hero .g2strip { color: var(--on-ink-mute); }
.sch-hero .g2strip b { color: var(--on-ink); }
@media (max-width: 960px){ .sch-hero__overlay { background: linear-gradient(180deg, rgba(15,14,12,.95) 0%, rgba(15,14,12,.66) 100%); } }

/* ---- The herd, school edition (mirrors Homepage product cards) ---- */
.herd { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px,2.4vw,28px); margin-top: clamp(24px,3vw,44px); }
@media (max-width: 900px){ .herd { grid-template-columns: 1fr; } }
.herdcard { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(18px,2vw,26px); display: flex; flex-direction: column; }
.herdcard__num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); letter-spacing: .04em; }
.herdcard__name { font-family: var(--font-body); font-weight: 800; letter-spacing: -0.02em; font-size: clamp(26px,3vw,36px); line-height: 1; margin: 7px 0 3px; }
.herdcard__name .moo { color: var(--pink); }
.herdcard__tag { font-size: var(--t-small); color: var(--ink-mute); margin-bottom: 16px; }
.herdcard__media { position: relative; aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink); box-shadow: var(--sh-md); isolation: isolate; }
.herdcard__list { display: flex; flex-direction: column; gap: 9px; margin: 18px 0; padding: 0; }
.herdcard__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft); list-style: none; }
.herdcard__tick { width: 19px; height: 19px; border-radius: 50%; flex: none; background: var(--pink); position: relative; margin-top: 1px; }
.herdcard__tick::after { content:""; position: absolute; left: 6px; top: 4px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(43deg); }
.herdcard__foot { margin-top: auto; }
.herdcard .ind-rec__card { width: min(72%, 300px); padding: 16px 18px; }
.herdcard .ind-rec__q { font-size: clamp(14px,1.6vw,17px); margin-bottom: 12px; }
.herdcard .ind-rec__btn { font-size: 12.5px; padding: 8px 14px; }

/* dark scrim for media mocks */
.sch-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(15,14,12,.30), rgba(15,14,12,.55)); }

/* live PlayMoo embed in the hosting split */
.sch-player--live { border: none; background: #000; }
.sch-player__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }

/* clickable video thumb + lightbox */
.herdcard__embed { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; pointer-events: none; }
.herdcard__media--play { cursor: pointer; }
.herdcard__media--play .sch-player__play { transition: transform .18s ease; }
.herdcard__media--play:hover .sch-player__play, .herdcard__media--play:focus-visible .sch-player__play { transform: scale(1.08); }

/* ---- Branded player mock (PlayMoo for schools) ---- */
.sch-player { position: relative; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden;
  background: var(--ink); box-shadow: var(--sh-lg); border: 1px solid var(--line-dk); isolation: isolate; }
.sch-player__play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%; z-index: 3;
  background: var(--pink); display: grid; place-items: center; box-shadow: 0 6px 22px rgba(0,0,0,.4); }
.sch-player__play svg { width: 23px; height: 23px; fill: #fff; transform: translateX(2px); }
.sch-player__brand { position: absolute; z-index: 3; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 12.5px; }
.sch-player__brand .dot { width: 22px; height: 22px; border-radius: 7px; background: var(--paper-2); color: var(--pink-ink);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 13px; }
.sch-player__bar { position: absolute; z-index: 3; left: 14px; right: 14px; bottom: 12px; display: flex; align-items: center; gap: 10px; }
.sch-player__track { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,.28); overflow: hidden; }
.sch-player__fill { display: block; width: 34%; height: 100%; background: var(--pink); border-radius: 2px; }
.sch-player__tc { font-family: var(--font-mono); font-size: 11px; color: #fff; }

/* ---- Replace-the-stack comparison (mirrors Homepage versus) ---- */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: clamp(14px,2.4vw,30px); align-items: stretch; margin-top: clamp(28px,4vw,52px); }
@media (max-width: 880px){ .versus { grid-template-columns: 1fr; } .versus__arrow { transform: rotate(90deg); justify-self: center; padding: 4px 0; } }
.vcard { border-radius: var(--r-lg); padding: clamp(20px,2.4vw,30px); display: flex; flex-direction: column; }
.vcard__lead { font-family: var(--font-mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.vcol-old { background: rgba(255,255,255,.045); border: 1px solid var(--line-dk); }
.vcol-old .vcard__lead { color: var(--on-ink-mute); }
.vrow { display: flex; align-items: center; gap: 12px; padding: 13px 0; border-top: 1px solid var(--line-dk); }
.vrow:first-of-type { border-top: none; }
.vrow__name { flex: 1; min-width: 0; color: var(--on-ink-soft); font-size: 14px; font-weight: 600; text-decoration: line-through; text-decoration-color: rgba(255,255,255,.3); }
.vrow__logos { display: flex; gap: 7px; align-items: center; filter: grayscale(1); opacity: .5; }
.vrow__logos img { width: 19px; height: 19px; }
.vrow__x { width: 22px; height: 22px; border-radius: 50%; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: var(--on-ink-mute); }
.vrow__x svg { width: 12px; height: 12px; }
.vcard__foot-old { margin-top: 18px; font-size: 13px; color: var(--on-ink-mute); }
.versus__arrow { display: grid; place-items: center; color: var(--pink); }
.versus__arrow svg { width: 38px; height: 38px; }
.vcol-new { background: var(--pink); color: #fff; box-shadow: var(--sh-lg); }
.vcol-new .vcard__lead { color: rgba(255,255,255,.85); }
.vcol-new .vname { font-family: var(--font-body); font-weight: 800; letter-spacing: -0.02em; font-size: clamp(24px,2.6vw,30px); line-height: 1; margin-bottom: 14px; }
.vlist { display: flex; flex-direction: column; gap: 11px; padding: 0; margin: 0 0 20px; }
.vlist li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: #fff; list-style: none; }
.vlist__tick { width: 19px; height: 19px; border-radius: 50%; flex: none; background: rgba(255,255,255,.22); position: relative; margin-top: 1px; }
.vlist__tick::after { content:""; position: absolute; left: 6px; top: 4px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(43deg); }
.vcol-new .vfoot { margin-top: auto; }
