/* ============================================================
   Margot — Report, Start & Success surfaces
   Loads AFTER styles.css (reuses its :root tokens & buttons)
   ============================================================ */

/* ---------- shared sub-page chrome ---------- */
.subnav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(245,246,248,0.86);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hairline);
}
.subnav .back {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--t4);
  display: inline-flex; align-items: center; gap: 8px;
}
.subnav .back:hover { color: var(--rouge); }

.page { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.page-wide { max-width: 920px; margin: 0 auto; padding: 0 24px; }

/* ============================================================
   START / UPLOAD FLOW
   ============================================================ */
.start { padding: 56px 0 90px; }
.start .eyebrow { text-align: center; }
.start h1 {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(34px, 6vw, 60px); line-height: 0.98; letter-spacing: -0.02em;
  text-align: center; margin: 14px auto 0; max-width: 16ch; text-wrap: balance;
}
.start .lede {
  font-family: var(--display); font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.5; color: var(--t2); text-align: center;
  max-width: 540px; margin: 20px auto 0; text-wrap: pretty;
}

/* stepper */
.stepper { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 40px 0 0; }
.stepper .s {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t4); display: inline-flex; align-items: center; gap: 8px;
}
.stepper .s .n {
  width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--hairline);
  display: inline-flex; align-items: center; justify-content: center; font-size: 11px;
}
.stepper .s.active { color: var(--rouge); }
.stepper .s.active .n { border-color: var(--rouge); background: var(--rouge); color: #fff; }
.stepper .bar { width: 26px; height: 1px; background: var(--hairline); }

/* platform picker */
.platforms-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.platform {
  background: var(--card); border: 1.5px solid var(--hairline); border-radius: var(--radius);
  padding: 26px; text-align: left; cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: 6px;
}
.platform:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.platform.selected { border-color: var(--rouge); box-shadow: 0 0 0 3px rgba(22,24,29,0.12); }
.platform.is-locked {
  position: relative; cursor: not-allowed; overflow: hidden;
}
.platform.is-locked > *:not(.soon-badge) {
  filter: blur(3px); opacity: 0.45;
  -webkit-user-select: none; user-select: none;
  pointer-events: none;
}
.platform.is-locked:hover { transform: none; box-shadow: none; border-color: var(--hairline); }
.soon-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2; filter: none !important; opacity: 1 !important;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink); background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 100px; padding: 7px 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1); white-space: nowrap;
}
.platform .glyph { font-size: 28px; }
.platform h3 { font-family: var(--ui); font-weight: 700; font-size: 18px; margin: 6px 0 0; }
.platform p { font-size: 14px; color: var(--t3); margin: 2px 0 0; line-height: 1.45; }

/* language step in start flow */
.lang-step {
  display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap;
}
.lang-step-label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t4); white-space: nowrap;
}

/* how-to */
.howto {
  background: var(--blush); border: 1px solid var(--blush-br); border-radius: var(--radius);
  padding: 24px 26px; margin-top: 20px;
}
.howto .label { margin: 0 0 12px; color: var(--bordeaux); }
.howto ol { margin: 0; padding-left: 20px; font-size: 15.5px; line-height: 1.7; color: var(--t2); }
.howto ol b { color: var(--ink); }

/* dropzone */
.dropzone {
  display: flex; flex-direction: column; align-items: center;
  margin-top: 20px; border: 2px dashed var(--hairline); border-radius: var(--radius);
  background: var(--card); padding: 40px 24px; text-align: center;
  transition: border-color .2s ease, background .2s ease;
  cursor: pointer;
}
.dropzone:hover, .dropzone.drag { border-color: var(--rouge); background: #fff; }
.dropzone .dz-guill {
  font-family: var(--guillemet); font-weight: 700; font-size: 40px; color: var(--ink); line-height: 1;
}
.dropzone h3 { font-family: var(--display); font-style: italic; font-size: 24px; margin: 14px 0 0; }
.dropzone p { font-size: 14px; color: var(--t4); margin: 6px 0 0; }
.dropzone .file {
  display: none; margin-top: 14px; font-family: var(--mono); font-size: 13px;
  color: var(--bordeaux); background: var(--blush); border: 1px solid var(--blush-br);
  border-radius: 100px; padding: 7px 16px;
}
.dropzone.has-file .file { display: inline-block; }

/* consent */
.consent { display: flex; gap: 12px; align-items: flex-start; margin-top: 22px; font-size: 14.5px; color: var(--t3); line-height: 1.5; }
.consent input { margin-top: 3px; accent-color: var(--rouge); width: 18px; height: 18px; flex: none; }
.consent a { color: var(--bordeaux); text-decoration: underline; }

.start .submit { margin-top: 28px; width: 100%; }
.start .submit:disabled { opacity: 0.45; cursor: not-allowed; box-shadow: none; }
.start .priv-foot {
  text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t4); margin-top: 16px;
}

/* ---------- reading / loading state ---------- */
.reading { padding: 100px 0; text-align: center; display: none; }
.reading.show { display: block; }
.reading .device {
  width: 88px; height: 88px; border-radius: 24px; background: var(--rouge);
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto;
  box-shadow: var(--shadow-rouge); animation: breathe 1.8s ease-in-out infinite;
}
.reading .device span { font-family: var(--guillemet); font-weight: 700; color: #fff; font-size: 44px; line-height: 1; margin-top: -2px; }
.reading-face { width: 104px; height: 104px; border-radius: 50%; object-fit: cover; object-position: 54% 24%; border: 2px solid var(--rouge); background: var(--ink); box-shadow: 0 14px 32px -16px rgba(22,24,29,0.65); animation: breathe 1.8s ease-in-out infinite; }
.platform .glyph-logo { width: 32px; height: 32px; border-radius: 8px; display: block; }
@keyframes breathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }
.reading h2 { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(28px, 5vw, 42px); margin: 28px 0 0; }
.reading .quip {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--rouge); margin-top: 18px; min-height: 1.4em;
}
.reading .track { width: min(420px, 80%); height: 4px; border-radius: 100px; background: var(--hairline); margin: 24px auto 0; overflow: hidden; }
.reading .fill { height: 100%; width: 0; background: var(--rouge); border-radius: 100px; transition: width .4s ease; }

/* ============================================================
   THE REPORT
   ============================================================ */
.report { padding: 40px 0 80px; }

/* masthead */
.r-masthead { text-align: center; padding-bottom: 30px; border-bottom: 1px solid var(--hairline); }
.r-kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--rouge);
}
.r-title {
  font-family: var(--display); font-weight: 500; font-size: clamp(40px, 8vw, 76px);
  line-height: 0.95; letter-spacing: -0.02em; margin: 12px 0 0;
}
.r-title .guill { font-size: 0.55em; vertical-align: 0.06em; }
.r-byline { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; }
.r-byline .byline-face { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: 54% 22%; border: 1.5px solid var(--rouge); background: var(--ink); }
.r-byline .autograph { font-family: var(--script); font-style: italic; font-size: 38px; color: var(--rouge); line-height: 1; padding-right: 16px; }
.r-byline .by { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t4); }
.r-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 22px;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.04em; color: var(--t3);
}
.r-stats b { color: var(--ink); font-weight: 500; }
.r-share-top { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }

/* generic report section */
.r-sec { padding: 46px 0; border-bottom: 1px solid var(--hairline); }
.r-sec .r-eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rouge);
  display: flex; align-items: center; gap: 8px;
}
.r-sec h2 {
  font-family: var(--display); font-weight: 500; font-size: clamp(26px, 4vw, 36px);
  line-height: 1.05; margin: 12px 0 0; letter-spacing: -0.01em;
}
.r-sec p.body {
  font-family: var(--display); font-size: clamp(18px, 2.4vw, 21px); line-height: 1.6; color: var(--t1);
  margin: 18px 0 0; text-wrap: pretty;
}
.r-sec p.body em { font-style: italic; color: var(--bordeaux); }

/* opening verdict (reuse landing .verdict but ensure standalone) */
.report .verdict { margin-top: 8px; }

/* per-person profiles */
.profiles { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.profile {
  background: var(--card); border: 1px solid var(--hairline); border-radius: var(--radius);
  padding: 26px 28px; display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap;
}
.profile .avatar {
  flex: none; width: 56px; height: 56px; border-radius: 50%; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-style: italic; color: var(--paper); font-size: 28px;
}
.profile.her-fav .avatar { background: var(--rouge); }
.profile .pcontent { flex: 1; min-width: 220px; }
.profile .pname { font-family: var(--display); font-style: italic; font-size: 26px; line-height: 1; }
.profile .ptitle { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rouge); margin-top: 8px; }
.profile .pverdict { font-size: 16.5px; line-height: 1.55; color: var(--t2); margin-top: 14px; }
.profile .pverdict em { color: var(--bordeaux); font-style: italic; }
.profile .pstat {
  flex: none; text-align: right; min-width: 96px;
}
.profile .pstat .num { font-family: var(--display); font-weight: 500; font-size: 40px; line-height: 0.9; color: var(--rouge); }
.profile .pstat .cap { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t4); margin-top: 6px; }

/* private language decoder */
.decoder { margin-top: 24px; border: 1px solid var(--hairline); border-radius: var(--radius); overflow: hidden; }
.decoder .row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
  padding: 18px 24px; background: var(--card); border-top: 1px solid var(--hairline-soft);
}
.decoder .row:first-child { border-top: none; }
.decoder .says { font-family: var(--display); font-style: italic; font-size: 19px; color: var(--ink); }
.decoder .arrow { font-family: var(--guillemet); font-weight: 700; color: var(--rouge); font-size: 22px; }
.decoder .means { font-size: 15.5px; color: var(--t3); line-height: 1.4; }

/* awards / superlative tags (reuse .tagrow .stag from styles.css) */
.awards { margin-top: 24px; }
.awards .tagrow { margin-top: 0; }
.award-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }

/* rating card */
.rating-card {
  margin-top: 26px; background: var(--ink); color: var(--paper);
  border-radius: 20px; padding: 34px;
}
.rating-card .rc-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.rating-card .rc-title { font-family: var(--display); font-style: italic; font-size: 26px; }
.rating-card .rc-overall { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--pink-soft); }
.rating-rows { margin-top: 22px; display: flex; flex-direction: column; gap: 2px; }
.rating-rows .rr { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.rating-rows .rr:first-child { border-top: none; }
.rating-rows .rr .dim { font-size: 15.5px; color: #C9CDD3; }
.stars { display: inline-flex; gap: 3px; }
.stars .star { color: var(--champagne); font-size: 17px; letter-spacing: 1px; }
.stars .star.off { color: rgba(255,255,255,0.16); }
.rating-card .rc-foot {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--display); font-style: italic; font-size: 20px; color: #fff;
}
.rating-card .rc-foot .pink { color: var(--pink-soft); }

/* flags */
.flags { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.flag-col { border-radius: var(--radius); padding: 26px 28px; }
.flag-col.red { background: var(--card); border: 1px solid var(--hairline); }
.flag-col.green { background: #FFFFFF; border: 1px solid #E6E8EC; }
.flag-col h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; margin: 0; }
.flag-col.red h3 { color: var(--rouge); }
.flag-col.green h3 { color: #16181D; }
.flag-col ul { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.flag-col li { font-size: 15.5px; line-height: 1.45; color: var(--t1); padding-left: 22px; position: relative; }
.flag-col.red li::before { content: "\2715"; color: var(--ink); position: absolute; left: 0; font-size: 13px; }
.flag-col.green li::before { content: "\2713"; color: var(--ink); position: absolute; left: 0; font-size: 11px; top: 3px; }

/* strengths & blind spots */
.sbs { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.sbs .card { border-radius: var(--radius); padding: 28px; }
.sbs .card.strength { background: var(--card); border: 1px solid var(--hairline); }
.sbs .card.blind { background: var(--ink); color: var(--paper); }
.sbs .card h3 { font-family: var(--display); font-style: italic; font-size: 23px; margin: 0; }
.sbs .card.strength h3 { color: var(--bordeaux); }
.sbs .card.blind h3 { color: var(--pink-soft); }
.sbs .card p { font-size: 15.5px; line-height: 1.55; margin: 14px 0 0; }
.sbs .card.strength p { color: var(--t2); }
.sbs .card.blind p { color: #C9CDD3; }

/* sign-off */
.r-signoff { text-align: center; padding: 56px 0 10px; }
.r-signoff .mark { font-family: var(--guillemet); font-weight: 700; color: var(--rouge); font-size: 40px; line-height: 1; }
.r-signoff .line { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(26px, 4.5vw, 38px); line-height: 1.25; margin: 14px auto 0; max-width: 18ch; text-wrap: balance; }
.r-signoff .auto { font-family: var(--script); font-style: italic; font-size: 58px; color: var(--rouge); line-height: 0.7; margin-top: 18px; }

/* ============================================================
   PAYWALL
   ============================================================ */
.premium { position: relative; }
body:not(.unlocked) .premium > .r-sec,
body:not(.unlocked) .premium > .r-signoff,
body:not(.unlocked) .premium > .share-band {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}
.gate { display: none; }
body:not(.unlocked) .gate {
  display: block; position: relative; z-index: 5;
  margin: 0 auto;
  text-align: center;
}
/* fade veil over the blurred premium block */
body:not(.unlocked) .premium::before {
  content: ""; position: absolute; left: -40px; right: -40px; top: 0; height: 220px;
  background: linear-gradient(180deg, var(--paper) 8%, rgba(245,246,248,0.0) 100%);
  z-index: 4; pointer-events: none;
}
.gate-card {
  position: relative; z-index: 6;
  background: var(--card); border: 1.5px solid var(--rouge); border-radius: 22px;
  padding: 40px 36px; max-width: 460px; margin: -20px auto 0;
  box-shadow: var(--shadow-card); text-align: center;
}
.gate-card .lock-ic {
  width: 56px; height: 56px; border-radius: 16px; background: var(--rouge); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; font-size: 24px;
}
.gate-card h3 { font-family: var(--display); font-weight: 500; font-size: 30px; line-height: 1.1; margin: 18px 0 0; }
.gate-card .what { font-size: 15px; color: var(--t3); line-height: 1.55; margin: 12px 0 0; }
.gate-card .what b { color: var(--ink); }
.gate-card .price { font-family: var(--display); font-weight: 500; font-size: 56px; line-height: 1; margin: 20px 0 0; }
.gate-card .price sup { font-size: 26px; vertical-align: 18px; color: var(--rouge); }
.gate-card .btn-rouge { width: 100%; margin-top: 22px; }
.gate-card .fine { font-size: 12.5px; color: var(--t4); margin-top: 12px; }
body.unlocked .premium::before, body.unlocked .gate { display: none; }

/* unlocked badge */
.unlocked-badge { display: none; }
body.unlocked .unlocked-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: #16181D; background: #FFFFFF; border: 1px solid #E6E8EC; border-radius: 100px; padding: 7px 14px;
  margin: 0 auto;
}

/* ============================================================
   SHARE
   ============================================================ */
.share-band { text-align: center; padding: 48px 0 8px; }
.share-band h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 4vw, 34px); margin: 0; }
.share-band p { color: var(--t3); margin: 10px 0 0; }
.share-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }
.share-btn {
  border: none; border-radius: 100px; font-family: var(--ui); font-weight: 600; font-size: 15px;
  padding: 13px 22px; display: inline-flex; align-items: center; gap: 8px; transition: transform .2s ease, opacity .2s ease;
}
.share-btn:hover { transform: translateY(-2px); }
.share-btn.rouge { background: var(--rouge); color: #fff; }
.share-btn.ink { background: var(--ink); color: var(--paper); }
.share-btn.ghost { background: var(--card); color: var(--ink); border: 1px solid var(--hairline); }

/* the shareable card preview */
.share-card {
  position: relative; max-width: 460px; margin: 30px auto 0;
  border-radius: 22px; overflow: hidden; background: var(--ink);
  min-height: 300px; box-shadow: var(--shadow-card); text-align: left;
}
.share-card .sc-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 22%; filter: grayscale(1) contrast(1.04);
}
.share-card .sc-body {
  position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 300px; padding: 30px;
  background: linear-gradient(0deg, rgba(15,16,20,0.9) 14%, rgba(15,16,20,0.12) 72%);
}
.share-card blockquote { margin: 0; font-family: var(--display); font-style: italic; font-size: 25px; line-height: 1.3; color: var(--paper); text-wrap: pretty; }
.share-card .sc-sign { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 20px; }
.share-card .sc-auto { font-family: var(--script); font-style: italic; font-size: 38px; color: var(--pink-soft); line-height: 1; padding-right: 14px; }
.share-card .sc-mark { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: #9AA1AC; }

/* cross-sell */
.crosssell {
  margin-top: 40px; background: var(--ink); color: var(--paper); border-radius: 20px;
  padding: 34px 36px; text-align: center;
}
.crosssell .cs-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink-soft); }
.crosssell h3 { font-family: var(--display); font-weight: 500; font-size: clamp(24px, 4vw, 32px); margin: 12px 0 0; }
.crosssell p { color: #9AA1AC; margin: 10px auto 0; max-width: 440px; }
.crosssell .btn-rouge { margin-top: 22px; }

/* ============================================================
   SUCCESS / UNLOCK
   ============================================================ */
.success { min-height: 76vh; display: flex; align-items: center; justify-content: center; padding: 60px 24px; }
.success .box { text-align: center; max-width: 480px; }
.success .seal {
  width: 96px; height: 96px; border-radius: 26px; background: var(--rouge); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto;
  box-shadow: var(--shadow-rouge); animation: pop .5s cubic-bezier(.2,1.3,.5,1) both;
}
.success .seal span { font-family: var(--guillemet); font-weight: 700; font-size: 50px; line-height: 1; margin-top: -2px; }
@keyframes pop { 0% { transform: scale(0.4); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.success .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rouge); margin-top: 26px; }
.success h1 { font-family: var(--display); font-weight: 500; font-size: clamp(34px, 6vw, 52px); line-height: 1; margin: 12px 0 0; }
.success p { font-family: var(--display); font-size: 20px; color: var(--t2); margin: 16px auto 0; max-width: 380px; line-height: 1.5; }
.success .btn-rouge { margin-top: 30px; }
.success .redirect { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--t4); margin-top: 16px; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 720px) {
  .subnav { padding: 12px 20px; }
  .platforms-pick { grid-template-columns: 1fr; }
  .award-cards, .flags, .sbs { grid-template-columns: 1fr; }
  .decoder .row { grid-template-columns: 1fr; gap: 6px; text-align: left; }
  .decoder .arrow { display: none; }
  .decoder .means { color: var(--bordeaux); }
  .profile .pstat { text-align: left; }
  .tb-inner { padding: 10px 18px; gap: 10px; }
  .lang-label { display: none; }
}

/* ============================================================
   REPORT TOOLBAR — language · photos · PDF
   ============================================================ */
.report-toolbar { border-bottom: 1px solid var(--hairline); background: var(--card); }
.tb-inner {
  max-width: 760px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.lang-pick { display: flex; align-items: center; gap: 10px; }
.lang-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--t4); }
.lang-pills { display: inline-flex; gap: 4px; background: var(--paper); border: 1px solid var(--hairline); border-radius: 100px; padding: 3px; }
.lang-pill {
  border: none; background: transparent; color: var(--t3);
  font-family: var(--ui); font-weight: 600; font-size: 13px; padding: 6px 12px; border-radius: 100px; cursor: pointer;
  transition: background .15s ease, color .15s ease;
  display: inline-flex; align-items: center; gap: 6px;
}
.lang-flag { font-size: 14px; line-height: 1; }
.lang-pill:hover { color: var(--ink); }
.lang-pill.is-on { background: var(--ink); color: var(--paper); }
.tb-actions { display: inline-flex; gap: 8px; }
.tb-btn {
  border: 1px solid var(--hairline); background: var(--card); color: var(--ink);
  font-family: var(--ui); font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: 100px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px; transition: border-color .15s ease;
}
.tb-btn:hover { border-color: var(--ink); }

/* cover photo banner */
.cover-mount { max-width: 760px; margin: 26px auto 0; padding: 0 24px; }
.cover { position: relative; border-radius: 20px; overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--shadow-card); }
.cover img { width: 100%; max-height: 380px; object-fit: cover; display: block; }
.cover-tag {
  position: absolute; left: 14px; top: 14px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: rgba(22,24,29,0.82); color: var(--paper); padding: 5px 11px; border-radius: 100px;
}

/* attached-photo gallery */
.gallery-mount { max-width: 760px; margin: 26px auto 0; padding: 0 24px; display: flex; flex-wrap: wrap; gap: 12px; }
.g-item { position: relative; margin: 0; width: 116px; height: 116px; border-radius: 14px; overflow: hidden; border: 1px solid var(--hairline); }
.g-item.is-cover { outline: 2px solid var(--ink); outline-offset: 1px; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-cover, .g-del {
  position: absolute; top: 6px; border: none; border-radius: 50%; width: 24px; height: 24px;
  cursor: pointer; font-size: 12px; line-height: 1; display: flex; align-items: center; justify-content: center;
}
.g-cover { left: 6px; background: rgba(245,246,248,0.92); color: var(--ink); }
.g-item.is-cover .g-cover { background: var(--ink); color: var(--paper); }
.g-del { right: 6px; background: rgba(22,24,29,0.82); color: var(--paper); }

/* ============================================================
   DO ANOTHER REPORT — end-of-report CTA
   ============================================================ */
.another-report-sec {
  margin: 40px 0 0;
  padding: 64px 24px 72px;
  background: linear-gradient(180deg, #fff 0%, #F4F1EC 100%);
  border-top: 1px solid var(--hairline);
}
.another-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.another-eyebrow {
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rouge); margin: 0 0 12px;
}
.wa-sender-time {
  font-family: var(--ui); font-size: 11px; color: #8a9099;
  margin-left: auto;
}

/* WhatsApp callout wrapper — mimics a chat conversation */
.another-wa-wrap {
  background: #EFE7DC;
  border-radius: 18px;
  padding: 14px 16px 10px;
  max-width: 340px;
  margin-bottom: 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.wa-sender-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 6px;
}
.wa-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: #25D366; color: #fff;
  font-family: var(--ui); font-weight: 700; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wa-sender-name {
  font-family: var(--ui); font-size: 12px; font-weight: 700;
  color: #25D366;
}

/* the green sent bubble */
.another-wa-bubble {
  position: relative;
  background: #DCF8C6;
  color: #111;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.13);
  text-align: left;
}
.another-wa-bubble::before {
  content: '';
  position: absolute;
  top: 0; left: -8px;
  width: 0; height: 0;
  border-right: 9px solid #DCF8C6;
  border-top: 9px solid transparent;
}
.another-wa-bubble .wa-text {
  font-family: var(--ui); font-size: 15px; line-height: 1.45; display: block;
}
.another-wa-bubble .wa-meta {
  position: absolute; bottom: 5px; right: 10px;
  font-size: 10px; color: #53a065; white-space: nowrap;
}
.wa-ticks { font-size: 12px; }

.another-heading {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(28px, 5vw, 44px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 0 0 14px;
}
.another-sub {
  color: var(--t3); max-width: 480px; margin: 0 auto 44px;
  font-size: 17px; line-height: 1.6;
}

/* real screenshots — same proof as the landing wall */
.another-shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
  margin-bottom: 44px;
}
.another-shots .ashot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.another-shots .ashot img {
  width: 100%; height: auto; display: block;
  image-rendering: -webkit-optimize-contrast;
}
@media (max-width: 640px) {
  .another-shots { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* mini phone frames (legacy) */
.another-phones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  margin-bottom: 44px;
}
.aphone { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.aphone-frame {
  width: 100%;
  aspect-ratio: 9/18;
  max-width: 140px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px -8px rgba(22,24,29,0.52), 0 0 0 1.5px rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
}

/* phone status bar */
.aphone-statusbar {
  background: #075E54;
  color: rgba(255,255,255,0.85);
  font-family: var(--ui); font-size: 7px; font-weight: 600;
  padding: 5px 10px 2px;
  display: flex; justify-content: space-between; align-items: center;
  flex-shrink: 0;
}
.aphone-icons { letter-spacing: -1px; }

/* WhatsApp header */
.aphone-wa-header {
  background: #075E54;
  padding: 5px 8px 7px;
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.aphone-back { color: #fff; font-size: 14px; font-weight: 300; line-height: 1; }
.aphone-avatar-sm {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-size: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.aphone-contact { flex: 1; overflow: hidden; }
.aphone-cname {
  font-family: var(--ui); font-weight: 700; font-size: 9px; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.aphone-csub {
  font-family: var(--ui); font-size: 7px; color: rgba(255,255,255,0.72);
  margin-top: 0;
}

/* chat messages area */
.aphone-screen {
  background: #ECE5DD;
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
}
.aphone-msg {
  font-family: var(--ui); font-size: 8px; line-height: 1.3;
  padding: 4px 6px 11px; border-radius: 8px; max-width: 84%;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.aphone-msg em { font-style: normal; font-weight: 600; }
.aphone-msg::after {
  content: 'now';
  position: absolute; bottom: 2px; right: 5px;
  font-size: 6px; color: rgba(0,0,0,0.35);
}
.aphone-msg.left {
  background: #fff; color: #111;
  border-radius: 0 8px 8px 8px;
  align-self: flex-start;
}
.aphone-msg.right {
  background: #DCF8C6; color: #111;
  border-radius: 8px 0 8px 8px;
  align-self: flex-end;
}
.aphone-msg.right::after { color: #53a065; }

.aphone-label {
  font-family: var(--ui); font-size: 11px; font-weight: 600;
  color: var(--t3); text-align: center;
}

.another-btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  font-size: 17px; padding: 15px 32px;
  margin-bottom: 14px;
}
.another-note {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--t5); margin: 0;
}

@media (max-width: 600px) {
  .another-phones { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   PRINT — download as PDF (browser "Save as PDF")
   ============================================================ */
@media print {
  .subnav, .report-toolbar, .sticky-cta, .r-share-top, .share-row,
  .gate, .crosssell, .g-cover, .g-del { display: none !important; }
  body { background: #fff !important; }
  body .premium > .r-sec, body .premium > .r-signoff, body .premium > .share-band { filter: none !important; }
  .premium::before { display: none !important; }
  .report.page, .page, .cover-mount, .gallery-mount { max-width: 100% !important; }
  .r-sec, .rating-card, .superlative, .profile, .decoder, .evidence,
  .flags, .sbs, .share-card, .cover, .g-item { break-inside: avoid; page-break-inside: avoid; }
}
