:root {
  --yl-ink: #465c78;
  --yl-ink-dark: #33455c;
  --yl-ink-soft: #e9eef4;
  --yl-paper: #fbfaf7;
  --yl-paper-deep: #f3f0e9;
  --yl-text: #171717;
  --yl-muted: #68665f;
  --yl-border: #dcd8cf;
  --yl-white: #ffffff;
  --yl-netflix: #a85f57;
  --yl-netflix-dark: #8e4d47;
  --yl-netflix-soft: #f6ece9;
  --yl-shadow: 0 18px 50px rgba(32, 38, 48, 0.08);
  --yl-serif: Georgia, "Times New Roman", serif;
  --yl-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--yl-paper);
  color: var(--yl-text);
  font-family: var(--yl-sans);
  font-size: 17px;
  line-height: 1.65;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--yl-ink);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--yl-ink-dark);
}

.yl-container {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
}

.yl-site-header {
  border-bottom: 1px solid rgba(220, 216, 207, 0.75);
  background: rgba(251, 250, 247, 0.94);
}

.yl-nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.yl-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #111;
  font-family: var(--yl-sans);
  font-size: 1.45rem;
  font-weight: 450;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.yl-mark {
  display: block;
  width: 31px;
  height: 31px;
  flex: 0 0 31px;
}

.yl-brand--product {
  min-width: 34px;
  justify-content: center;
}

.yl-nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.yl-nav-links > a {
  color: var(--yl-muted);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.yl-nav-links > a:hover,
.yl-nav-links > a[aria-current="page"] {
  color: var(--yl-text);
}

.yl-nav-links .yl-nav-cta {
  min-height: 42px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yl-ink);
  color: var(--yl-white);
}

.yl-nav-links .yl-nav-cta:hover {
  background: var(--yl-ink-dark);
  color: var(--yl-white);
}

.yl-main {
  min-height: calc(100vh - 230px);
}

.yl-hero {
  padding: clamp(48px, 6vw, 78px) 0 46px;
}

.yl-kicker {
  margin: 0 0 14px;
  color: var(--yl-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.yl-display,
.yl-page-title,
.yl-section-title,
.yl-card h2 {
  font-family: var(--yl-serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.yl-display {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 4.75rem);
  line-height: 0.92;
}

.yl-display em {
  color: var(--yl-ink);
  font-style: normal;
}

.yl-hero-copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--yl-muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.yl-text-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.94rem;
  font-weight: 700;
}

.yl-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 22px;
  margin-top: 28px;
}

.yl-hero-actions .yl-text-link {
  margin-top: 0;
}

.yl-choice-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding-bottom: clamp(70px, 10vw, 120px);
}

.yl-card {
  min-height: 360px;
  padding: clamp(28px, 4vw, 43px);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--yl-border);
  border-radius: 25px;
}

.yl-card-conversation {
  border-color: rgba(70, 92, 120, 0.32);
  background: var(--yl-ink-soft);
}

.yl-card-netflix {
  border-color: rgba(168, 95, 87, 0.28);
  background: var(--yl-netflix-soft);
}

.yl-card-number {
  margin: 0 0 34px;
  color: var(--yl-muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.yl-card h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  line-height: 1;
}

.yl-card p {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--yl-muted);
}

.yl-button {
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yl-ink);
  color: var(--yl-white);
  font-weight: 750;
  text-decoration: none;
}

.yl-button:hover {
  background: var(--yl-ink-dark);
  color: var(--yl-white);
}

.yl-button-netflix {
  background: var(--yl-netflix);
}

.yl-button-netflix:hover {
  background: var(--yl-netflix-dark);
}

.yl-trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--yl-border);
  background: var(--yl-paper-deep);
}

.yl-trust-strip .yl-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.yl-trust-strip p {
  max-width: 720px;
  margin: 0;
  color: var(--yl-muted);
  font-size: 0.94rem;
}

.yl-return-link {
  margin: 0;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 700;
}

.yl-page-hero {
  max-width: 850px;
  padding: clamp(48px, 6vw, 76px) 0 38px;
}

.yl-page-title {
  margin: 0;
  font-size: clamp(2.9rem, 4.8vw, 4.5rem);
  line-height: 0.94;
}

.yl-page-lede {
  max-width: 720px;
  margin: 25px 0 0;
  color: var(--yl-muted);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.yl-content {
  max-width: 780px;
  padding-bottom: clamp(78px, 10vw, 128px);
}

.yl-content section {
  padding: 35px 0;
  border-top: 1px solid var(--yl-border);
}

.yl-section-title {
  margin: 0 0 15px;
  font-size: clamp(1.9rem, 3.5vw, 2.65rem);
  line-height: 1.08;
}

.yl-content p,
.yl-content li {
  color: #4f4d47;
}

.yl-content ul {
  padding-left: 1.25rem;
}

.yl-content li + li {
  margin-top: 8px;
}

.yl-effective-date {
  margin-top: 18px;
  color: var(--yl-muted);
  font-size: 0.9rem;
}

.yl-callout {
  margin: 18px 0 0;
  padding: 22px 24px;
  border-left: 4px solid var(--yl-ink);
  background: var(--yl-ink-soft);
}

.yl-callout p {
  margin: 0;
}

.yl-site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--yl-border);
  background: var(--yl-text);
  color: rgba(255, 255, 255, 0.72);
}

.yl-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.yl-footer-brand {
  color: var(--yl-white);
  font-family: var(--yl-serif);
  font-size: 1.2rem;
}

.yl-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.yl-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.yl-footer-links a:hover {
  color: var(--yl-white);
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .yl-container {
    width: min(100% - 32px, 1120px);
  }

  .yl-nav {
    min-height: 68px;
    gap: 15px;
  }

  .yl-nav-links {
    gap: 14px;
  }

  .yl-nav-links > a:not(.yl-nav-cta) {
    display: none;
  }

  .yl-nav-links .yl-nav-cta {
    min-height: 40px;
    padding: 7px 14px;
  }

  .yl-hero {
    padding-top: 42px;
  }

  .yl-display {
    font-size: clamp(2.65rem, 12vw, 3.75rem);
  }

  .yl-page-hero {
    padding-top: 42px;
  }

  .yl-page-title {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
  }

  .yl-choice-grid {
    grid-template-columns: 1fr;
  }

  .yl-card {
    min-height: 315px;
  }

  .yl-trust-strip .yl-container,
  .yl-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* yl-reco-loading-state-v1 */
.yl-reco-loading {
  position: fixed;
  inset: 0;
  z-index: 2000;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(245, 243, 238, 0.94);
  backdrop-filter: blur(5px);
}

.yl-reco-loading-card {
  width: min(520px, 100%);
  padding: clamp(30px, 6vw, 52px);
  border: 1px solid var(--yl-border);
  border-radius: 24px;
  background: var(--yl-white);
  box-shadow: var(--yl-shadow);
  text-align: center;
}

.yl-reco-loading-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 22px;
  display: block;
  border: 4px solid rgba(70, 92, 120, 0.2);
  border-top-color: var(--yl-ink);
  border-radius: 50%;
  animation: yl-reco-spin 0.85s linear infinite;
}

.yl-reco-loading-kicker {
  margin: 0 0 8px;
  color: var(--yl-muted);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yl-reco-loading-card h2 {
  margin: 0;
  font-family: var(--yl-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.yl-reco-loading-card > p:not(.yl-reco-loading-kicker) {
  margin: 16px auto 0;
  max-width: 420px;
  color: var(--yl-muted);
  line-height: 1.55;
}

.yl-reco-loading-card .yl-reco-loading-slow {
  color: var(--yl-text);
  font-weight: 750;
}

@keyframes yl-reco-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .yl-reco-loading-spinner {
    animation-duration: 1.8s;
  }
}

/* yl-public-header-corralling-v1
   The shared header is intentionally slightly wider than the
   1060px editorial shell, visually corralling the content below. */
.yl-public-header-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.yl-public-header-inner--generated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 720px) {
  .yl-public-header-inner {
    width: min(100% - 28px, 1180px);
  }
}

/* yl-public-editorial-type-guard-v1
   Serif is reserved for each page's primary editorial headline.
   About and Privacy section headings use the product sans-serif. */

.yl-page-about main h2,
.yl-page-about main h3,
.yl-page-about main h4,
.yl-page-about main h5,
.yl-page-about main h6,
.yl-page-privacy main h2,
.yl-page-privacy main h3,
.yl-page-privacy main h4,
.yl-page-privacy main h5,
.yl-page-privacy main h6 {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif !important;
  letter-spacing: -0.025em;
}

/* Preserve the large editorial headline on each page. */
.yl-page-about main h1,
.yl-page-privacy main h1 {
  font-family: Georgia, "Times New Roman", serif;
}

/* Dense legal/editorial reading treatment. */
.yl-page-privacy .yl-page-hero {
  max-width: 820px;
  padding-bottom: 34px;
}

.yl-page-privacy .yl-page-lede {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.55;
}

.yl-page-privacy .yl-content {
  width: min(860px, 100%);
  display: grid;
  gap: 0;
  padding-bottom: 80px;
}

.yl-page-privacy .yl-content > section {
  padding: 24px 0 22px;
  border-top: 1px solid var(--yl-border);
}

.yl-page-privacy .yl-content h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.yl-page-privacy .yl-content p,
.yl-page-privacy .yl-content li {
  font-size: .92rem;
  line-height: 1.55;
}

.yl-page-privacy .yl-content p {
  margin: 0 0 10px;
}

.yl-page-privacy .yl-content ul {
  margin: 8px 0 10px;
  padding-left: 1.25rem;
}

@media (max-width: 700px) {
  .yl-nav-links {
    gap: 14px;
  }

  .yl-nav-links > a {
    font-size: .78rem;
  }

  .yl-page-privacy .yl-content > section {
    padding: 20px 0 18px;
  }
}

/* yl-wordmark-only-header-v1 */
.yl-public-header-inner a,
.yl-public-header-inner .brand,
.yl-public-header-inner .wordmark {
  text-decoration: none;
}

.yl-public-header-inner .brand,
.yl-public-header-inner .wordmark {
  color: #171717;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* yl-public-volume-balance-v1
   Quiet the editorial headline and strengthen the shared brand lockup. */

/* Slightly stronger header presence. */
header a:has(.yl-mark) {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  gap: 10px;
}

header .yl-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

/* About and Privacy headlines should lead, not shout. */
.yl-page-about main h1,
.yl-page-privacy main h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

@media (max-width: 720px) {
  header a:has(.yl-mark) {
    font-size: 1.18rem;
  }

  header .yl-mark {
    width: 29px;
    height: 29px;
    flex-basis: 29px;
  }

  .yl-page-about main h1,
  .yl-page-privacy main h1 {
    font-size: clamp(2.55rem, 11vw, 3.25rem);
    line-height: 1;
  }
}

/* yl-netflix-affiliation-note-style-v1 */
.netflix-affiliation-note {
  margin-top: 14px;
  color: #77736d;
  font-size: .78rem;
  line-height: 1.45;
}

/* yl-recommendation-flow-clarity-v3 */
.yl-manage-services-link {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: #465c78;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.yl-manage-services-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.yl-manage-services-link:focus-visible {
  outline: 3px solid rgba(70, 92, 120, 0.24);
  outline-offset: 3px;
  border-radius: 4px;
}

/* yl-homepage-alpha-video-v5-20260731 */

.yl-concept-video-section {
  padding: 26px 0 96px;
}

.yl-concept-video-inner {
  width: min(900px, calc(100% - 44px));
}

.yl-concept-video-copy {
  max-width: 650px;
  margin-bottom: 24px;
}

.yl-concept-video-copy h2 {
  margin: 4px 0 12px;
  font-family: var(--yl-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.yl-concept-video-copy > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--yl-muted);
  line-height: 1.6;
}

.yl-concept-video-frame {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 220px;
  padding: clamp(8px, 1.5vw, 13px);
  overflow: hidden;
  border: 1px solid var(--yl-border);
  border-radius: 22px;
  background: #171717;
  box-shadow: var(--yl-shadow);
}

.yl-concept-video-frame video {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(72vh, 720px);
  margin: 0 auto;
  border-radius: 14px;
  background: #171717;
}

@media (max-width: 640px) {
  .yl-concept-video-section {
    padding: 18px 0 72px;
  }

  .yl-concept-video-inner {
    width: min(100% - 28px, 900px);
  }

  .yl-concept-video-frame {
    border-radius: 17px;
  }

  .yl-concept-video-frame video {
    border-radius: 10px;
    max-height: 70vh;
  }
}


/* Conversation voice recording states */
.voice-listening-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

.voice-listening-dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.3;
  animation: yourlens-listening-dot 1.2s infinite ease-in-out;
}

.voice-listening-dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.voice-listening-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes yourlens-listening-dot {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* yl-conversation-mic-ux-v4 */
.voice-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 36px;
  margin-left: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.1;
  vertical-align: middle;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 5;
}

.voice-state:empty { display: none; }
.voice-state--starting,
.voice-state--finishing,
.voice-state--transcribing {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.15);
}
.voice-state--listening {
  border-color: rgba(125, 211, 252, 0.8);
  background: rgba(56, 189, 248, 0.18);
}
.voice-state--ready {
  border-color: rgba(134, 239, 172, 0.72);
  background: rgba(34, 197, 94, 0.15);
}
.voice-state--error {
  border-color: rgba(253, 164, 175, 0.78);
  background: rgba(244, 63, 94, 0.14);
}
.voice-state .voice-listening-dots {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  margin-left: 2px;
}
.voice-state .voice-listening-dots span {
  display: block !important;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.3;
  animation: yourlens-listening-dot 1.05s infinite ease-in-out;
}
.voice-state .voice-listening-dots span:nth-child(2) { animation-delay: 0.16s; }
.voice-state .voice-listening-dots span:nth-child(3) { animation-delay: 0.32s; }

@media (max-width: 700px) {
  .voice-state {
    display: flex;
    width: fit-content;
    max-width: 100%;
    margin: 10px 0 0;
  }
  .voice-state:empty { display: none; }
}

/* yl-conversation-release-fixes-v1: the mic button is the status */
#mic-button {
  position: relative;
  transition: transform 160ms ease, box-shadow 160ms ease,
    background-color 160ms ease, border-color 160ms ease;
}

#mic-button.is-listening {
  transform: scale(1.06);
  border-color: rgba(125, 211, 252, 0.92);
  background: rgba(56, 189, 248, 0.20);
  animation: yl-mic-listening-pulse 1.25s infinite ease-in-out;
}

#mic-button.is-listening::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 2px solid rgba(125, 211, 252, 0.66);
  border-radius: inherit;
  pointer-events: none;
  animation: yl-mic-listening-ring 1.25s infinite ease-out;
}

#mic-button.is-transcribing {
  border-color: rgba(196, 181, 253, 0.9);
  background: rgba(139, 92, 246, 0.18);
  animation: yl-mic-transcribing 850ms infinite ease-in-out alternate;
}

@keyframes yl-mic-listening-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.28); }
  50% { box-shadow: 0 0 0 9px rgba(56, 189, 248, 0.08); }
}

@keyframes yl-mic-listening-ring {
  0% { opacity: 0.9; transform: scale(0.92); }
  100% { opacity: 0; transform: scale(1.18); }
}

@keyframes yl-mic-transcribing {
  from { transform: rotate(-3deg) scale(1); }
  to { transform: rotate(3deg) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  #mic-button.is-listening,
  #mic-button.is-listening::after,
  #mic-button.is-transcribing {
    animation: none;
  }
  #mic-button.is-listening {
    box-shadow: 0 0 0 6px rgba(56, 189, 248, 0.14);
  }
}

/* yl-conversation-ux-followthrough-v1 */
.completion-build-note {
  margin: 0.75rem 0 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

#mic-button .mic-state-label {
  margin-left: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
}

.local-feedback-confirmation {
  display: none;
  margin: 0.7rem 0 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(134, 239, 172, 0.5);
  border-radius: 0.65rem;
  background: rgba(34, 197, 94, 0.1);
  color: inherit;
  font-size: 0.9rem;
  font-weight: 650;
}

.local-feedback-confirmation.is-visible {
  display: block;
}

/* YourLens header mark */
header .yl-brand img.yl-mark {
  display: block;
  width: 24px;
  height: 24px;
  max-width: 24px;
  object-fit: contain;
  flex: 0 0 24px;
}

/* Sticky public navigation */
.yl-public-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: #fbfaf7;
}

/* yl-find-movie-header-v1 */
.yl-find-movie-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--yl-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
}

.yl-find-movie-link:hover {
  color: var(--yl-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 700px) {
  .yl-find-movie-link {
    min-height: 31px;
    font-size: 0.68rem;
  }
}

/* yl-use-your-lens-alpha-v1 */
.yl-brand-tools {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  min-width: 0;
}

.yl-use-lens-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 11px;
  border: 1px solid rgba(70, 92, 120, 0.3);
  border-radius: 999px;
  color: var(--yl-ink-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.yl-use-lens-link:hover,
.yl-use-lens-link[aria-current="page"] {
  border-color: var(--yl-ink);
  background: var(--yl-ink-soft);
  color: var(--yl-text);
}

.yl-use-lens-link.is-locked {
  border-color: var(--yl-border);
  color: var(--yl-muted);
}

.yl-use-lens-aperture {
  color: var(--yl-ink);
  font-size: 1.08rem;
  line-height: 0;
}

.yl-use-lens-lock {
  padding-left: 6px;
  border-left: 1px solid var(--yl-border);
  color: #8a877f;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.yl-hero-button {
  width: auto;
  min-width: 190px;
  margin-top: 0;
  padding-inline: 25px;
}

.yl-use-lens-main {
  padding: clamp(42px, 7vw, 82px) 0 clamp(76px, 10vw, 120px);
}

.yl-current-lens {
  margin-top: calc(clamp(42px, 7vw, 82px) * -1 + 16px);
  margin-bottom: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--yl-ink);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.yl-current-lens span:first-child {
  font-size: 1.08rem;
  line-height: 1;
}

.yl-lens-shell {
  width: min(920px, calc(100% - 44px));
}

.yl-lens-shell > .yl-page-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.15rem);
  line-height: 0.96;
}

.yl-lens-intro {
  max-width: 730px;
  margin: 24px 0 0;
  color: var(--yl-muted);
  font-size: clamp(1.06rem, 2.1vw, 1.28rem);
  line-height: 1.62;
}

.yl-lens-lock-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 28px;
  border: 1px solid rgba(70, 92, 120, 0.28);
  border-radius: 50%;
  background: var(--yl-ink-soft);
  color: var(--yl-ink);
  font-size: 2rem;
}

.yl-lens-unlock-card,
.yl-lens-capture-form {
  margin-top: 38px;
  padding: clamp(24px, 4.5vw, 42px);
  border: 1px solid var(--yl-border);
  border-radius: 25px;
  background: var(--yl-white);
  box-shadow: var(--yl-shadow);
}

.yl-lens-unlock-card {
  max-width: 760px;
}

.yl-lens-preview {
  width: 100%;
  margin: clamp(54px, 8vw, 84px) 0 0;
}

.yl-lens-locked {
  width: min(1120px, calc(100% - 44px));
}

.yl-lens-preview-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.yl-lens-preview img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--yl-border);
  border-radius: 18px;
  box-shadow: var(--yl-shadow);
}

.yl-lens-preview-payoff {
  margin-top: 10px;
}

.yl-lens-unlock-card > p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--yl-muted);
}

.yl-lens-eyebrow {
  color: var(--yl-text) !important;
  font-size: 1.08rem;
  font-weight: 800;
}

.yl-lens-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.yl-lens-actions .yl-button {
  width: auto;
  min-width: 200px;
  margin-top: 0;
}

.yl-button-secondary {
  border: 1px solid var(--yl-border);
  background: var(--yl-paper);
  color: var(--yl-text);
}

.yl-button-secondary:hover {
  border-color: var(--yl-ink);
  background: var(--yl-ink-soft);
  color: var(--yl-text);
}

.yl-lens-message {
  max-width: 760px;
  margin-top: 28px;
  padding: 14px 17px;
  border: 1px solid var(--yl-border);
  border-radius: 13px;
  font-size: 0.94rem;
  font-weight: 700;
}

.yl-lens-message.is-error {
  border-color: rgba(168, 95, 87, 0.34);
  background: var(--yl-netflix-soft);
  color: #75413c;
}

.yl-lens-message.is-success {
  border-color: rgba(70, 92, 120, 0.28);
  background: var(--yl-ink-soft);
  color: var(--yl-ink-dark);
}

.yl-lens-capture-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.yl-lens-input-card {
  min-height: 180px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--yl-border);
  border-radius: 19px;
  background: var(--yl-paper);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease,
    background-color 160ms ease;
}

.yl-lens-input-card:hover,
.yl-lens-input-card.is-selected {
  border-color: var(--yl-ink);
  background: var(--yl-ink-soft);
  transform: translateY(-2px);
}

.yl-lens-input-card input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.yl-lens-input-card strong {
  margin-top: 11px;
  font-size: 1.06rem;
}

.yl-lens-input-card > span:last-of-type {
  margin-top: 2px;
  color: var(--yl-muted);
  font-size: 0.88rem;
}

.yl-lens-input-icon {
  color: var(--yl-ink);
  font-size: 1.65rem;
  line-height: 1;
}

.yl-lens-file-status {
  min-height: 1.5em;
  margin: 12px 0 0;
  color: var(--yl-ink-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.yl-lens-device-note {
  margin: 12px 0 0;
  color: var(--yl-muted);
  font-size: 0.84rem;
}

.yl-lens-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 21px 0;
  color: var(--yl-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yl-lens-or::before,
.yl-lens-or::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--yl-border);
}

.yl-lens-title-label {
  display: block;
  margin-bottom: 8px;
  color: var(--yl-text);
  font-size: 0.84rem;
  font-weight: 800;
}

.yl-lens-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.yl-lens-title-row input {
  min-width: 0;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid var(--yl-border);
  border-radius: 13px;
  background: var(--yl-white);
  color: var(--yl-text);
  font: inherit;
}

.yl-lens-title-row input:focus {
  border-color: var(--yl-ink);
  outline: 3px solid rgba(70, 92, 120, 0.14);
}

.yl-lens-submit {
  width: auto;
  min-width: 170px;
  margin: 0;
  border: 0;
  cursor: pointer;
}

.yl-lens-capture-form.is-busy {
  pointer-events: none;
  opacity: 0.72;
}

.yl-lens-privacy-note {
  margin: 17px 0 0;
  color: var(--yl-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.yl-lens-movie-list {
  display: grid;
  gap: 16px;
  margin-top: 38px;
}

.yl-lens-movie-card {
  padding: 16px;
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid var(--yl-border);
  border-radius: 20px;
  background: var(--yl-white);
}

.yl-lens-movie-card > img,
.yl-lens-poster-placeholder {
  width: 116px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: var(--yl-paper-deep);
}

.yl-lens-poster-placeholder {
  display: grid;
  place-items: center;
  color: var(--yl-ink);
  font-size: 2rem;
}

.yl-lens-movie-copy {
  align-self: center;
}

.yl-lens-movie-copy h2 {
  margin: 0;
  font-family: var(--yl-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.yl-lens-movie-copy > p {
  max-width: 620px;
  margin: 9px 0 0;
  color: var(--yl-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.yl-lens-movie-copy .yl-lens-movie-year {
  color: var(--yl-ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.yl-lens-movie-copy form {
  margin-top: 16px;
}

.yl-lens-movie-copy .yl-button {
  width: auto;
  min-height: 43px;
  margin: 0;
  padding: 9px 18px;
  border: 0;
  cursor: pointer;
}

.yl-lens-movie-list + .yl-text-link {
  margin-top: 28px;
}

.yl-lens-result-grid {
  display: grid;
  grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 68px);
  margin-top: 18px;
}

.yl-lens-result-poster img,
.yl-lens-result-poster .yl-lens-poster-placeholder {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--yl-shadow);
}

.yl-lens-result-copy {
  align-self: center;
}

.yl-lens-movie-label {
  margin: 0 0 10px;
  color: var(--yl-muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yl-lens-answer {
  margin: 0;
  font-family: var(--yl-serif);
  font-size: clamp(3.5rem, 8vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.88;
}

.yl-lens-answer.is-yes,
.yl-lens-answer.is-strong {
  color: var(--yl-ink-dark);
}

.yl-lens-answer.is-moderate {
  color: #586c82;
}

.yl-lens-answer.is-maybe,
.yl-lens-answer.is-mixed {
  color: #79653e;
}

.yl-lens-answer.is-no,
.yl-lens-answer.is-not {
  color: var(--yl-netflix-dark);
}

.yl-lens-summary {
  max-width: 650px;
  margin: 27px 0 0;
  color: var(--yl-text);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.62;
}

.yl-lens-read-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 28px;
}

.yl-lens-read-points > div {
  padding: 17px;
  border: 1px solid var(--yl-border);
  border-radius: 14px;
  background: var(--yl-white);
}

.yl-lens-read-points h2 {
  margin: 0;
  color: var(--yl-muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.yl-lens-read-points p {
  margin: 7px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.yl-lens-feedback-box {
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--yl-border);
}

.yl-lens-feedback-box > p {
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 800;
}

.yl-lens-feedback-box form {
  display: flex;
  gap: 9px;
}

.yl-lens-feedback-box button {
  min-height: 40px;
  padding: 8px 17px;
  border: 1px solid var(--yl-border);
  border-radius: 999px;
  background: var(--yl-white);
  color: var(--yl-text);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.yl-lens-feedback-box button:hover {
  border-color: var(--yl-ink);
  background: var(--yl-ink-soft);
}

.yl-lens-feedback-complete {
  max-width: 760px;
}

@media (max-width: 900px) {
  .yl-use-lens-lock {
    display: none;
  }

  .yl-nav-links .yl-nav-cta {
    display: none;
  }
}

@media (max-width: 700px) {
  .yl-brand-tools {
    gap: 9px;
  }

  .yl-use-lens-link {
    min-height: 31px;
    padding: 4px 8px;
    font-size: 0.68rem;
  }

  .yl-use-lens-aperture {
    display: none;
  }

  .yl-lens-shell {
    width: min(100% - 28px, 920px);
  }

  .yl-lens-preview {
    margin-top: 48px;
  }

  .yl-lens-preview-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .yl-lens-preview img {
    border-radius: 12px;
  }

  .yl-lens-capture-grid,
  .yl-lens-read-points {
    grid-template-columns: 1fr;
  }

  .yl-lens-input-card {
    min-height: 142px;
  }

  .yl-lens-title-row {
    grid-template-columns: 1fr;
  }

  .yl-lens-submit {
    width: 100%;
  }

  .yl-lens-movie-card {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 15px;
  }

  .yl-lens-movie-card > img,
  .yl-lens-movie-card > .yl-lens-poster-placeholder {
    width: 86px;
  }

  .yl-lens-movie-copy > p:not(.yl-lens-movie-year) {
    display: none;
  }

  .yl-lens-result-grid {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
  }

  .yl-lens-result-poster img,
  .yl-lens-result-poster .yl-lens-poster-placeholder {
    border-radius: 12px;
  }

  .yl-lens-result-poster {
    grid-row: 1 / span 2;
  }

  .yl-lens-result-copy {
    align-self: start;
  }

  .yl-lens-answer {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
  }

  .yl-lens-summary,
  .yl-lens-read-points,
  .yl-lens-feedback-box,
  .yl-lens-result-copy > .yl-text-link {
    grid-column: 1 / -1;
  }

  .yl-lens-summary {
    margin-top: 22px;
  }

  .yl-lens-result-grid {
    align-items: start;
  }

  .yl-lens-result-copy {
    display: contents;
  }

  .yl-lens-result-copy > .yl-lens-movie-label,
  .yl-lens-result-copy > .yl-lens-answer {
    grid-column: 2;
  }

  .yl-lens-actions .yl-button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .yl-brand > span {
    display: none;
  }

  .yl-nav-links {
    margin-left: auto;
  }
}

/* yl-trust-principles-v1 */
.yl-page-trust .yl-trust-hero {
  max-width: 900px;
}

.yl-page-trust .yl-trust-policy-note,
.yl-page-privacy .yl-privacy-principles-link {
  max-width: 760px;
  margin-top: 18px;
  color: #68645e;
  font-size: 0.92rem;
  line-height: 1.6;
}

.yl-page-trust .yl-trust-policy-note a,
.yl-page-privacy .yl-privacy-principles-link a,
.yl-page-trust .yl-trust-policy-bottom a {
  color: #465c78;
  font-weight: 700;
  text-underline-offset: 3px;
}

.yl-page-trust .yl-trust-content section {
  scroll-margin-top: 100px;
}

.yl-page-trust .yl-trust-principle {
  max-width: 760px;
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid #465c78;
  color: #242424;
  font-size: 1.04rem;
  line-height: 1.65;
}

.yl-page-trust .yl-trust-staccato {
  color: #302f2c;
  line-height: 1.75;
}

.yl-page-trust .yl-trust-examples {
  max-width: 760px;
  margin: 24px 0;
  padding: 20px 22px;
  border: 1px solid rgba(70, 92, 120, 0.18);
  border-radius: 14px;
  background: rgba(70, 92, 120, 0.045);
}

.yl-page-trust .yl-trust-examples p {
  margin: 0;
  color: #45423d;
  font-style: italic;
}

.yl-page-trust .yl-trust-examples p + p {
  margin-top: 14px;
}

.yl-page-trust .yl-trust-commitment {
  margin-top: 64px;
  padding-top: 46px;
  border-top: 1px solid rgba(23, 23, 23, 0.14);
}

.yl-page-trust .yl-trust-signoff {
  margin-top: 32px;
  color: #171717;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.65;
  letter-spacing: -0.025em;
}

.yl-page-trust .yl-trust-reflection {
  max-width: 720px;
  margin-top: 24px;
  color: #56524c;
  font-size: 1.02rem;
  line-height: 1.7;
}

.yl-page-trust .yl-trust-policy-bottom {
  margin-top: 34px;
  color: #68645e;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .yl-page-trust .yl-trust-principle {
    padding-left: 14px;
  }

  .yl-page-trust .yl-trust-examples {
    padding: 18px;
    border-radius: 12px;
  }
}

/* yl-use-your-lens-three-offers-v1 */
.yl-use-offers-shell {
  width: min(1080px, calc(100% - 44px));
}

.yl-use-offers-intro {
  max-width: 760px;
}

.yl-use-offers-form {
  margin-top: clamp(34px, 5vw, 54px);
}

.yl-use-offer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  padding: clamp(25px, 3.5vw, 38px);
  border: 1px solid var(--yl-border);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(23, 23, 23, 0.055);
}

.yl-use-offer--hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 6vw, 70px);
  padding: clamp(30px, 5vw, 52px);
  border-color: rgba(70, 92, 120, 0.3);
  background:
    linear-gradient(
      135deg,
      rgba(70, 92, 120, 0.11),
      rgba(255, 255, 255, 0.9) 62%
    );
}

.yl-use-offer-copy {
  min-width: 0;
}

.yl-use-offer-number {
  margin: 0 0 12px;
  color: var(--yl-ink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.yl-use-offer-number::before {
  content: "USE ";
  color: var(--yl-muted);
}

.yl-use-offer h2 {
  max-width: 720px;
  margin: 0;
  color: var(--yl-text);
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.yl-use-offer p:not(.yl-use-offer-number) {
  max-width: 700px;
  margin: 13px 0 0;
  color: var(--yl-muted);
  font-size: 1rem;
  line-height: 1.58;
}

.yl-use-offer--hero h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

.yl-use-offer--hero p:not(.yl-use-offer-number) {
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.yl-use-offer-note {
  font-size: 0.9rem !important;
}

.yl-use-offers-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.yl-use-offer-action {
  align-self: flex-start;
  width: auto;
  margin: 0;
  text-align: center;
  text-decoration: none;
}

label.yl-use-offer-action {
  cursor: pointer;
}

.yl-use-offer-action input[type="file"] {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.yl-use-camera-action {
  min-width: 180px;
}

.yl-use-offer-footnote {
  margin-top: -10px !important;
  font-size: 0.82rem !important;
}

.yl-use-title-fallback {
  margin-top: -6px;
  border-top: 1px solid var(--yl-border);
  padding-top: 16px;
}

.yl-use-title-fallback summary {
  color: var(--yl-muted);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 750;
}

.yl-use-title-fallback .yl-lens-title-row {
  margin-top: 14px;
}

.yl-use-offers-privacy {
  max-width: 760px;
  margin: 18px 0 0;
}

.yl-use-offers-future {
  max-width: 820px;
  margin: clamp(38px, 6vw, 62px) 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--yl-border);
}

.yl-use-offers-future p {
  margin: 8px 0 0;
  color: var(--yl-muted);
  line-height: 1.6;
}

.yl-use-offers-future .yl-use-offers-future-title {
  margin-top: 0;
  color: var(--yl-text);
  font-size: 1.12rem;
  font-weight: 820;
  letter-spacing: -0.01em;
}

@media (max-width: 760px) {
  .yl-use-offers-shell {
    width: min(100% - 30px, 1080px);
  }

  .yl-use-offer--hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .yl-use-camera-action {
    width: 100%;
  }

  .yl-use-offers-secondary {
    grid-template-columns: 1fr;
  }

  .yl-use-offer-action {
    width: 100%;
  }

  .yl-use-title-fallback .yl-lens-title-row {
    grid-template-columns: 1fr;
  }

  .yl-use-title-fallback .yl-lens-submit {
    width: 100%;
  }
}


/* yl-consumer-controls-v1 */
.yl-footer-signout {
  font-weight: 750;
}

.yl-use-preferences {
  margin-top: clamp(28px, 4vw, 42px);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--yl-border);
  border-bottom: 1px solid var(--yl-border);
}

.yl-use-preferences-copy p {
  margin: 0;
}

.yl-use-preferences-copy .yl-use-preferences-label {
  margin-bottom: 3px;
  color: var(--yl-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.yl-use-preferences-copy p:last-child {
  color: var(--yl-muted);
  font-size: 0.9rem;
}

.yl-use-preferences-action {
  flex: 0 0 auto;
}

@media (max-width: 620px) {
  .yl-use-preferences {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
/* yl-inline-service-controls-v1 */
.yl-use-offer-services {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  margin-top: -10px;
  color: var(--yl-muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.yl-use-offer-services p {
  margin: 0;
}

.yl-use-offer-services p span {
  color: var(--yl-text);
  font-weight: 750;
}



/* yl-credits-page-v1 */
.yl-credits-content {
  max-width: 820px;
}

.yl-credit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
}

.yl-credit-item + .yl-credit-item {
  border-top: 1px solid var(--yl-border);
}

.yl-credit-item h3 {
  margin: 0 0 5px;
  color: var(--yl-text);
  font-size: 1rem;
  font-weight: 800;
}

.yl-credit-item p {
  margin: 0;
}

.yl-credit-item p + p {
  margin-top: 7px;
}

.yl-credit-mark {
  flex: 0 0 54px;
  padding-top: 2px;
}

.yl-credit-mark img {
  display: block;
  width: 46px;
  height: auto;
}

.yl-credit-legal,
.yl-credit-note {
  font-size: 0.9rem;
}

.yl-credit-note {
  margin: 0;
}

@media (max-width: 620px) {
  .yl-credit-item--tmdb {
    gap: 14px;
  }

  .yl-credit-mark {
    flex-basis: 48px;
  }

  .yl-credit-mark img {
    width: 40px;
  }
}


/* yl-conversation-header-context-v1 */
.yl-conversation-header-context {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(220, 216, 207, 0.72);
  color: var(--yl-muted);
  font-size: 0.84rem;
}

.yl-conversation-header-progress {
  font-weight: 700;
}

.yl-conversation-header-not-me {
  color: var(--yl-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.yl-conversation-header-not-me:hover {
  color: var(--yl-text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 760px) {
  .yl-conversation-header-context {
    min-height: 40px;
  }
}

/* yl-capacity-hardening-v1-20260822 */
.yl-capacity-pressure-banner {
  width: 100%; padding: 9px 16px; background: #f3efe5; color: #273546;
  border-bottom: 1px solid rgba(70,92,120,.24); text-align: center;
  font-size: .86rem; line-height: 1.45; font-weight: 700;
}
