/* ==========================================================
   Palette
   ========================================================== */

.reading-atmosphere {
  --work-bg: #FAF9F7;
  --work-text: #22262B;
  --work-navy: #102A43;
  --work-steel: #486581;
  --work-gold: #C0A062;
  --reading-atmosphere-border: rgba(72, 101, 129, 0.22);
  --reading-atmosphere-border-strong: rgba(72, 101, 129, 0.42);
  --reading-atmosphere-gold-soft: rgba(192, 160, 98, 0.18);
  --reading-atmosphere-gold-medium: rgba(192, 160, 98, 0.32);
  --reading-atmosphere-navy-soft: rgba(16, 42, 67, 0.08);
  --reading-atmosphere-navy-shadow: rgba(16, 42, 67, 0.18);
  color: var(--work-text);
}

.reading-soft-glow {
  box-shadow:
    0 0 0 1px rgba(192, 160, 98, 0.18),
    0 18px 45px rgba(16, 42, 67, 0.12);
}

.reading-gold-divider {
  width: min(8.5rem, 42%);
  height: 1px;
  margin: 1.15rem auto;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(192, 160, 98, 0.76), transparent);
}

/* ==========================================================
   Layout
   ========================================================== */

.reading-atmosphere__header {
  max-width: 52rem;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.reading-atmosphere__intro {
  max-width: 44rem;
  margin: 0.65rem auto 0;
  color: rgba(34, 38, 43, 0.74);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.72;
}

.reading-atmosphere__cards {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(0.85rem, 2.5vw, 1.45rem);
}

.reading-step {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: rgba(34, 38, 43, 0.78);
  line-height: 1.65;
}

.reading-step__number {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(192, 160, 98, 0.34);
  border-radius: 999px;
  background: rgba(250, 249, 247, 0.72);
  color: var(--work-navy, #102A43);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reading-result-panel {
  border: 1px solid rgba(72, 101, 129, 0.2);
  border-radius: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 249, 247, 0.94)),
    var(--work-bg, #FAF9F7);
  box-shadow: 0 22px 58px rgba(16, 42, 67, 0.1);
  color: var(--work-text, #22262B);
  padding: clamp(1.1rem, 3vw, 1.8rem);
}

/* ==========================================================
   Card Backs
   ========================================================== */

.reading-card-back {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.4rem;
  aspect-ratio: 5 / 7;
  padding: 0;
  border: 1px solid var(--work-steel, #486581);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 160, 98, 0.13), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    var(--work-navy, #102A43);
  color: var(--work-gold, #C0A062);
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.14);
  cursor: pointer;
  opacity: 0;
  overflow: hidden;
  transform: translateY(12px) scale(0.98);
  transition:
    transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 620ms ease,
    border-color 620ms ease,
    opacity 620ms ease;
  animation: readingCardEnter 620ms ease forwards, readingCardFloat 7s ease-in-out 780ms infinite;
}

.reading-card-back::before,
.reading-card-back::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.reading-card-back::before {
  inset: 0.45rem;
  border: 1px solid rgba(250, 249, 247, 0.24);
  border-radius: 0.72rem;
  box-shadow: inset 0 0 0 1px rgba(192, 160, 98, 0.16);
}

.reading-card-back::after {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 36%, rgba(255, 255, 255, 0.08) 44%, transparent 54% 100%),
    radial-gradient(circle at 50% 50%, rgba(192, 160, 98, 0.08), transparent 48%);
  opacity: 0.72;
}

.reading-card-back:hover,
.reading-card-back:focus-visible,
.reading-card-back.is-active {
  border-color: rgba(192, 160, 98, 0.56);
  box-shadow:
    0 0 0 1px rgba(192, 160, 98, 0.28),
    0 18px 45px rgba(16, 42, 67, 0.18);
  opacity: 1;
  transform: translateY(-3px) scale(1);
  animation: none;
}

.reading-card-back:focus-visible {
  outline: 2px solid rgba(192, 160, 98, 0.64);
  outline-offset: 4px;
}

.reading-card-back__star {
  position: relative;
  z-index: 1;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--work-gold, #C0A062);
  opacity: 0.75;
}

.reading-card-back__star::before,
.reading-card-back__star::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.reading-card-back__star::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.reading-card-back__star {
  background:
    linear-gradient(45deg, transparent 45%, currentColor 46% 54%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, currentColor 46% 54%, transparent 55%);
}

.reading-card-back--small {
  width: 5.8rem;
  border-radius: 0.78rem;
}

.reading-card-back--medium {
  width: 8.4rem;
}

.reading-card-back--large {
  width: 10.25rem;
  border-radius: 1.15rem;
}

/* ==========================================================
   Card Reveal Animations
   ========================================================== */

.reading-card-reveal {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition:
    opacity 580ms ease,
    transform 580ms cubic-bezier(0.2, 0.75, 0.25, 1),
    filter 580ms ease;
  will-change: opacity, transform;
}

.reading-card-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

@keyframes readingCardEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes readingCardFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1);
  }
}

/* ==========================================================
   Premium Panels
   ========================================================== */

.reading-premium-panel,
.reading-free-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(72, 101, 129, 0.2);
  border-radius: 1.55rem;
  color: var(--work-text, #22262B);
  padding: clamp(1.15rem, 3vw, 1.9rem);
}

.reading-premium-panel {
  background:
    radial-gradient(circle at top right, rgba(192, 160, 98, 0.13), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 249, 247, 0.98));
  box-shadow: 0 26px 70px rgba(16, 42, 67, 0.14);
}

.reading-free-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(250, 249, 247, 0.92));
  box-shadow: 0 18px 48px rgba(16, 42, 67, 0.09);
}

/* ==========================================================
   CTA
   ========================================================== */

.reading-cta-primary,
.reading-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 520ms ease,
    box-shadow 520ms ease,
    border-color 520ms ease,
    background-color 520ms ease;
}

.reading-cta-primary {
  border: 1px solid rgba(192, 160, 98, 0.56);
  background: linear-gradient(135deg, var(--work-navy, #102A43), #173858);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 42, 67, 0.18);
}

.reading-cta-secondary {
  border: 1px solid rgba(72, 101, 129, 0.28);
  background: rgba(250, 249, 247, 0.78);
  color: var(--work-navy, #102A43);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
}

.reading-cta-primary:hover,
.reading-cta-secondary:hover,
.reading-cta-primary:focus-visible,
.reading-cta-secondary:focus-visible {
  border-color: rgba(192, 160, 98, 0.62);
  box-shadow: 0 18px 40px rgba(16, 42, 67, 0.16);
  transform: translateY(-2px);
}

.reading-cta-primary:focus-visible,
.reading-cta-secondary:focus-visible {
  outline: 2px solid rgba(192, 160, 98, 0.66);
  outline-offset: 3px;
}

/* ==========================================================
   Mobile
   ========================================================== */

@media (max-width: 640px) {
  .reading-atmosphere__cards {
    gap: 0.78rem;
  }

  .reading-card-back--small {
    width: 4.9rem;
  }

  .reading-card-back,
  .reading-card-back--medium {
    width: 6.7rem;
  }

  .reading-card-back--large {
    width: 8rem;
  }

  .reading-premium-panel,
  .reading-free-panel,
  .reading-result-panel {
    border-radius: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reading-card-back,
  .reading-card-reveal,
  .reading-cta-primary,
  .reading-cta-secondary {
    animation: none;
    transition-duration: 1ms;
  }

  .reading-card-back,
  .reading-card-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   Work hub draw pages
   ========================================================== */

.work-draw-page {
  --work-paper: #ffffff;
  --work-paper-soft: #f4f2ee;
  --work-radius-xl: 1.8rem;
  --work-max: 1180px;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 12% 3%, rgba(192, 160, 98, 0.13), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(72, 101, 129, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--work-bg, #FAF9F7) 42%, #f2f0eb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

.work-draw-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(16, 42, 67, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 42, 67, 0.016) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.10));
}

.work-draw-page * {
  box-sizing: border-box;
}

.work-draw-page a {
  color: inherit;
}

.work-draw-page .reading-cta-primary,
.work-draw-page .reading-cta-primary:visited,
.work-draw-page .reading-cta-primary:active {
  color: #fff;
}

.work-draw-page .reading-cta-secondary,
.work-draw-page .reading-cta-secondary:visited,
.work-draw-page .reading-cta-secondary:active {
  color: var(--work-navy, #102A43);
}

.work-draw-page h1,
.work-draw-page h2,
.work-draw-page h3 {
  margin: 0;
  color: var(--work-text, #22262B);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.work-draw-page p {
  margin: 0;
}

.work-draw-skip {
  position: absolute;
  left: 1rem;
  top: -8rem;
  z-index: 10;
  border-radius: 999px;
  background: var(--work-navy, #102A43);
  color: #fff;
  padding: 0.72rem 1rem;
  text-decoration: none;
  transition: top 180ms ease;
}

.work-draw-skip:focus {
  top: 1rem;
}

.work-draw-hero,
.work-draw-section {
  width: min(var(--work-max), calc(100% - 2rem));
  margin-inline: auto;
}

.work-draw-hero {
  padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(1.4rem, 4vw, 3rem);
}

.work-draw-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-bottom: clamp(1.4rem, 3vw, 2.3rem);
  color: rgba(34, 38, 43, 0.62);
  font-size: 0.92rem;
}

.work-draw-breadcrumb a {
  color: var(--work-navy, #102A43);
  font-weight: 750;
  text-decoration: none;
}

.work-draw-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.72fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}

.work-draw-hero__content {
  max-width: 47rem;
}

.work-draw-eyebrow,
.work-draw-panel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--work-navy, #102A43);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-draw-eyebrow::before,
.work-draw-panel-kicker::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border: 1px solid rgba(192, 160, 98, 0.58);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(192, 160, 98, 0.34), transparent 62%);
}

.work-draw-hero h1 {
  max-width: 18ch;
  margin-top: 1rem;
  font-size: clamp(1.65rem, 4.55vw, 3.8rem);
}

.work-draw-lead {
  max-width: 43rem;
  margin-top: 1.2rem;
  color: rgba(34, 38, 43, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.work-draw-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.work-draw-hero__panel p:not(.work-draw-panel-kicker),
.work-draw-checklist {
  color: rgba(34, 38, 43, 0.78);
}

.work-draw-panel-title {
  margin: 0;
  color: var(--work-navy, #102A43);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.25;
}

.work-draw-checklist {
  display: grid;
  gap: 0.72rem;
  margin: 1.05rem 0 0;
  padding: 0;
  list-style: none;
}

.work-draw-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
}

.work-draw-checklist li::before {
  content: "✓";
  color: var(--work-gold, #C0A062);
  font-weight: 900;
  line-height: 1.35;
}

.work-draw-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.work-draw-proof {
  width: min(52rem, calc(100% - 2rem));
  margin: clamp(-1.2rem, -1vw, -0.35rem) auto clamp(1.2rem, 3vw, 2.2rem);
  border-top: 1px solid rgba(72, 101, 129, 0.16);
  border-bottom: 1px solid rgba(72, 101, 129, 0.12);
  color: rgba(34, 38, 43, 0.62);
  font-size: clamp(0.92rem, 1.8vw, 1rem);
  line-height: 1.55;
  padding: 0.85rem 1rem;
  text-align: center;
}

.work-draw-why {
  padding-top: clamp(1.2rem, 3vw, 2.4rem);
}

.work-draw-why__panel,
.work-draw-editorial__panel {
  max-width: 54rem;
  margin-inline: auto;
}

.work-draw-why__panel h2,
.work-draw-editorial__panel h2,
.work-draw-micro-cta h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.work-draw-why__copy,
.work-draw-editorial__copy {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  color: rgba(34, 38, 43, 0.76);
  font-size: clamp(0.98rem, 1.9vw, 1.06rem);
}

.work-draw-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  max-width: 48rem;
  margin: 0 auto 1.35rem;
  color: rgba(16, 42, 67, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.work-draw-journey::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(72, 101, 129, 0.16), rgba(192, 160, 98, 0.48), rgba(72, 101, 129, 0.16));
}

.work-draw-journey span {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(72, 101, 129, 0.18);
  border-radius: 999px;
  background: rgba(250, 249, 247, 0.92);
  padding: 0.52rem 0.75rem;
}

.work-draw-micro-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 58rem;
  margin: clamp(1.2rem, 3vw, 2rem) auto 0;
  box-shadow: 0 14px 36px rgba(16, 42, 67, 0.07);
}

.work-draw-micro-cta p:not(.work-draw-eyebrow) {
  max-width: 42rem;
  margin-top: 0.55rem;
  color: rgba(34, 38, 43, 0.72);
}

.work-draw-micro-cta .reading-cta-secondary {
  box-shadow: none;
}

.work-draw-editorial {
  padding-top: clamp(1.2rem, 3vw, 2.4rem);
}

.work-draw-micro-cta-section {
  padding-top: 0;
  padding-bottom: clamp(1.2rem, 3vw, 2.4rem);
}

.work-draw-micro-cta-section .work-draw-micro-cta {
  margin-top: 0;
}

.work-draw-support-section {
  padding-top: 0;
}

.work-draw-support {
  max-width: 54rem;
  margin: 0 auto;
  border-color: rgba(192, 160, 98, 0.22);
  background:
    radial-gradient(circle at top right, rgba(192, 160, 98, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(16, 42, 67, 0.98), rgba(21, 48, 74, 0.94));
  box-shadow: 0 20px 54px rgba(16, 42, 67, 0.14);
}

.work-draw-support .work-draw-eyebrow,
.work-draw-support .support-block__title {
  color: #fff;
}

.work-draw-support__copy {
  display: grid;
  gap: 0.55rem;
  max-width: 45rem;
  margin-top: 0.9rem;
}

.work-draw-support__actions {
  display: flex;
  margin-top: 1.15rem;
}

.work-draw-support__btn {
  min-width: min(100%, 13rem);
}

.work-draw-positions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.work-draw-positions .reading-step {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(72, 101, 129, 0.18);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 249, 247, 0.9));
  padding: 1rem 1rem 2.35rem;
  box-shadow: 0 10px 26px rgba(16, 42, 67, 0.055);
}

.work-draw-positions .reading-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.82rem;
  width: 0.78rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(192, 160, 98, 0.68), rgba(72, 101, 129, 0.14));
}

.work-draw-positions .reading-step:last-child::after {
  display: none;
}

.reading-step__connector {
  flex: 0 0 auto;
  width: 1px;
  min-height: 3.1rem;
  margin-top: 2.25rem;
  background: linear-gradient(180deg, rgba(192, 160, 98, 0.46), rgba(72, 101, 129, 0.1));
}

.work-draw-positions h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.work-draw-positions p {
  margin-top: 0.28rem;
  color: rgba(72, 101, 129, 0.86);
  font-size: 0.9rem;
}

.work-draw-positions .reading-step:nth-child(1)::before,
.work-draw-positions .reading-step:nth-child(2)::before,
.work-draw-positions .reading-step:nth-child(3)::before,
.work-draw-positions .reading-step:nth-child(4)::before,
.work-draw-positions .reading-step:nth-child(5)::before {
  position: absolute;
  left: 1rem;
  bottom: 0.8rem;
  color: rgba(16, 42, 67, 0.48);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.work-draw-positions .reading-step:nth-child(1)::before { content: "Diagnostic"; }
.work-draw-positions .reading-step:nth-child(2)::before,
.work-draw-positions .reading-step:nth-child(3)::before { content: "Compréhension"; }
.work-draw-positions .reading-step:nth-child(4)::before { content: "Décision"; }
.work-draw-positions .reading-step:nth-child(5)::before { content: "Action"; }

.work-draw-board-shell {
  display: grid;
  gap: 1.2rem;
}

.work-draw-board-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.work-draw-board-head h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.work-draw-status {
  max-width: 17rem;
  border: 1px solid rgba(192, 160, 98, 0.3);
  border-radius: 999px;
  background: rgba(250, 249, 247, 0.76);
  color: rgba(34, 38, 43, 0.7);
  padding: 0.72rem 0.95rem;
  font-size: 0.9rem;
}

.work-draw-prompt {
  border-left: 3px solid rgba(192, 160, 98, 0.7);
  background: rgba(16, 42, 67, 0.045);
  border-radius: 0 1rem 1rem 0;
  color: rgba(34, 38, 43, 0.76);
  padding: 0.95rem 1rem;
}

.work-draw-start {
  justify-self: start;
  cursor: pointer;
}

.work-draw-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(8.5rem, 1fr));
  gap: clamp(0.75rem, 1.8vw, 1.2rem);
  align-items: stretch;
}

.work-reading-card__button {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 0.75rem;
  width: 100%;
  height: 100%;
  min-height: 26rem;
  border: 1px solid rgba(72, 101, 129, 0.2);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(250, 249, 247, 0.92));
  box-shadow: 0 16px 38px rgba(16, 42, 67, 0.09);
  color: inherit;
  cursor: default;
  padding: 0.85rem;
  text-align: center;
}

.work-reading-card__button:not(:disabled) {
  cursor: pointer;
}

.work-reading-card__button:not(:disabled):hover,
.work-reading-card__button:not(:disabled):focus-visible {
  border-color: rgba(192, 160, 98, 0.56);
  box-shadow: 0 20px 48px rgba(16, 42, 67, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.work-reading-card__meta {
  display: grid;
  gap: 0.25rem;
  min-height: 4.4rem;
  align-content: start;
  color: var(--work-navy, #102A43);
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.24;
}

.work-reading-card__meta small {
  color: rgba(72, 101, 129, 0.82);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.work-reading-card__scene {
  display: grid;
  place-items: center;
  perspective: 1000px;
}

.work-reading-card__inner {
  position: relative;
  width: min(100%, 8.8rem);
  aspect-ratio: 5 / 7;
  transform-style: preserve-3d;
  transition: transform 720ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.work-reading-card.is-revealed .work-reading-card__inner {
  transform: rotateY(180deg);
}

.work-reading-card__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0.85rem;
  backface-visibility: hidden;
}

.work-reading-card__back {
  border: 1px solid var(--work-steel, #486581);
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 160, 98, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 34%),
    var(--work-navy, #102A43);
  color: var(--work-gold, #C0A062);
  box-shadow: inset 0 0 0 0.45rem rgba(255, 255, 255, 0.05);
}

.work-reading-card__back::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border: 1px solid rgba(250, 249, 247, 0.24);
  border-radius: 0.62rem;
}

.back-symbol {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 2.2rem;
  text-shadow: 0 0 22px rgba(192, 160, 98, 0.42);
}

.work-reading-card__front {
  background: #fdfbf7;
  transform: rotateY(180deg);
}

.work-reading-card__front img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-reading-card__name {
  color: var(--work-text, #22262B);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.work-reading-card__keywords {
  min-height: 1.2rem;
  color: rgba(72, 101, 129, 0.86);
  font-size: 0.82rem;
  font-weight: 750;
}

.work-draw-interpretations {
  display: grid;
  gap: 1rem;
}

.work-draw-section[aria-labelledby="interpretations-title"] .reading-atmosphere__header {
  max-width: 48rem;
  text-align: left;
}

.work-draw-section[aria-labelledby="interpretations-title"] .reading-atmosphere__intro {
  max-width: none;
  margin-inline: 0;
  text-align: left;
}

.work-interpretation {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr);
  gap: 1rem;
  scroll-margin-top: 1rem;
  transition: border-color 320ms ease, box-shadow 320ms ease, transform 320ms ease;
}

.work-interpretation.is-highlighted {
  border-color: rgba(192, 160, 98, 0.72);
  box-shadow: 0 0 0 3px rgba(192, 160, 98, 0.18), 0 22px 58px rgba(16, 42, 67, 0.12);
  transform: translateY(-2px);
}

.work-interpretation:focus {
  outline: none;
}

.work-interpretation__thumb {
  width: 5.6rem;
  aspect-ratio: 5 / 7;
  border-radius: 0.6rem;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(16, 42, 67, 0.12);
}

.work-interpretation h3 {
  margin-top: 0.25rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.work-interpretation__teaser {
  margin-top: 0.7rem;
  color: var(--work-navy, #102A43);
  font-weight: 750;
}

.work-interpretation__body p:last-child {
  margin-top: 0.65rem;
  color: rgba(34, 38, 43, 0.78);
}

.work-draw-empty {
  text-align: center;
}

.work-draw-followup {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(16rem, 0.82fr);
  gap: clamp(1.15rem, 3vw, 2.1rem);
  align-items: stretch;
  max-width: 58rem;
  margin-inline: auto;
}

.work-draw-followup__content {
  max-width: 39rem;
}

.work-draw-followup h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.work-draw-followup p:not(.work-draw-eyebrow):not(.work-draw-followup__reassurance) {
  max-width: 38rem;
  margin-top: 0.75rem;
  color: rgba(34, 38, 43, 0.76);
}

.work-draw-followup__list {
  display: grid;
  gap: 0.45rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(16, 42, 67, 0.82);
  font-weight: 700;
}

.work-draw-followup__list li::marker {
  color: var(--work-gold, #C0A062);
}

.work-draw-followup__actions {
  align-self: center;
  display: grid;
  gap: 0.78rem;
  width: min(100%, 20rem);
  justify-self: end;
  border: 1px solid rgba(192, 160, 98, 0.2);
  border-radius: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(192, 160, 98, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(250, 249, 247, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 14px 30px rgba(16, 42, 67, 0.06);
  padding: clamp(0.95rem, 2vw, 1.2rem);
}

.work-draw-followup__actions .reading-cta-primary,
.work-draw-followup__actions .reading-cta-secondary {
  width: 100%;
}

.work-draw-followup__actions .reading-cta-primary {
  min-height: 3.15rem;
  border-color: rgba(192, 160, 98, 0.68);
  font-weight: 850;
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.22);
}

.work-draw-followup__actions .reading-cta-secondary {
  min-height: 2.85rem;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: none;
}

.work-draw-followup__reassurance {
  margin: 0 0 0.15rem;
  color: rgba(16, 42, 67, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.work-draw-followup .work-draw-followup__price {
  display: inline-flex;
  width: fit-content;
  border: 1px solid rgba(192, 160, 98, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  padding: 0.48rem 0.82rem;
  color: var(--work-navy, #102A43);
  font-size: 0.95rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}


/* ==========================================================
   Work hub newsletter bridge
   ========================================================== */

.work-draw-newsletter-section {
  padding-top: clamp(1.1rem, 3vw, 2rem);
  padding-bottom: clamp(1.1rem, 3vw, 2rem);
}

.work-draw-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.78fr);
  gap: clamp(1.15rem, 3.2vw, 2.25rem);
  align-items: center;
  max-width: 58rem;
  margin: 0 auto;
  border-color: rgba(72, 101, 129, 0.15);
  background:
    radial-gradient(circle at 96% 0%, rgba(192, 160, 98, 0.14), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(72, 101, 129, 0.07), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(250, 249, 247, 0.96));
  box-shadow: 0 18px 44px rgba(16, 42, 67, 0.08);
}

.work-draw-newsletter h2 {
  margin-top: 0.55rem;
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

.work-draw-newsletter__copy {
  display: grid;
  gap: 0.68rem;
  margin-top: 0.85rem;
  color: rgba(34, 38, 43, 0.76);
  font-size: clamp(0.97rem, 1.8vw, 1.05rem);
  line-height: 1.65;
}

.work-draw-newsletter__list {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding-left: 1.1rem;
}

.work-draw-newsletter__list li::marker {
  color: rgba(192, 160, 98, 0.95);
}

.work-draw-newsletter__form {
  display: grid;
  gap: 0.84rem;
  border: 1px solid rgba(72, 101, 129, 0.13);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.76);
  padding: clamp(1rem, 2.4vw, 1.25rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.work-draw-newsletter__fields {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0.72rem;
}

.work-draw-newsletter__field {
  display: grid;
  gap: 0.38rem;
}

.work-draw-newsletter__label {
  color: rgba(16, 42, 67, 0.78);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-draw-newsletter__input,
.work-draw-newsletter__email,
.work-draw-newsletter__button {
  min-height: 2.9rem;
  border-radius: 999px;
  font: inherit;
}

.work-draw-newsletter__input,
.work-draw-newsletter__email {
  width: 100%;
  border: 1px solid rgba(72, 101, 129, 0.24);
  background: rgba(255, 255, 255, 0.94);
  color: var(--work-text, #22262B);
  justify-self: stretch;
  padding: 0 1rem;
}

.work-draw-newsletter__input:focus-visible,
.work-draw-newsletter__email:focus-visible,
.work-draw-newsletter__button:focus-visible,
.work-draw-newsletter__consent input:focus-visible {
  outline: 2px solid rgba(192, 160, 98, 0.62);
  outline-offset: 3px;
}

.work-draw-newsletter__button {
  border: 1px solid rgba(16, 42, 67, 0.28);
  background: rgba(16, 42, 67, 0.92);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
  padding: 0 1rem;
  transition: background-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.work-draw-newsletter__button:hover,
.work-draw-newsletter__button:focus-visible {
  background: var(--work-navy, #102A43);
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.12);
  transform: translateY(-1px);
}

.work-draw-newsletter__button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.work-draw-newsletter__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem;
  align-items: start;
  color: rgba(34, 38, 43, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.work-draw-newsletter__consent input {
  margin-top: 0.18rem;
  accent-color: var(--work-navy, #102A43);
}

.work-draw-newsletter__microcopy,
.work-draw-newsletter__feedback {
  color: rgba(34, 38, 43, 0.58);
  font-size: 0.82rem;
  line-height: 1.45;
}

.work-draw-newsletter__feedback {
  min-height: 1.2em;
}

@media (max-width: 980px) {
  .work-draw-hero__grid,
  .work-draw-micro-cta {
    grid-template-columns: 1fr;
  }

  .work-draw-followup {
    grid-template-columns: minmax(0, 1fr);
  }

  .work-draw-followup__content,
  .work-draw-followup__actions {
    max-width: none;
    width: 100%;
    justify-self: stretch;
  }

  .work-draw-positions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-draw-positions .reading-step::after {
    display: none;
  }

  .work-draw-cards {
    grid-template-columns: repeat(2, minmax(8.2rem, 1fr));
  }
}

@media (max-width: 640px) {
  .work-draw-hero,
  .work-draw-section {
    width: min(100% - 1rem, var(--work-max));
  }

  .work-draw-board-head {
    display: grid;
  }

  .work-draw-newsletter {
    grid-template-columns: 1fr;
  }

  .work-draw-newsletter__fields {
    grid-template-columns: 1fr;
  }

  .work-draw-newsletter__button {
    width: 100%;
  }

  .work-draw-status {
    max-width: none;
    border-radius: 1rem;
  }

  .work-draw-journey {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .work-draw-journey::before {
    display: none;
  }

  .work-draw-positions,
  .work-draw-cards {
    grid-template-columns: 1fr;
  }

  .reading-step__connector {
    min-height: 2.4rem;
  }

  .work-reading-card__button {
    min-height: 24rem;
  }

  .work-reading-card__inner {
    width: min(72vw, 9rem);
  }

  .work-interpretation {
    grid-template-columns: 4.8rem minmax(0, 1fr);
  }

  .work-interpretation__thumb {
    width: 4.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-reading-card__inner,
  .work-reading-card__button,
  .work-interpretation,
  .work-draw-skip {
    transition-duration: 1ms;
  }
}

/* ==========================================================
   Business digital work draw variant
   ========================================================== */

.work-draw-page--business-digital {
  --work-digital-accent: #6F7FA8;
  --work-digital-accent-soft: rgba(111, 127, 168, 0.13);
}

.work-draw-page--business-digital .work-draw-hero {
  background:
    radial-gradient(circle at 16% 10%, rgba(111, 127, 168, 0.12), transparent 26rem),
    radial-gradient(circle at 82% 4%, rgba(192, 160, 98, 0.13), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 247, 0.94));
}

.work-draw-page--business-digital .work-draw-journey span {
  border-color: rgba(111, 127, 168, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), var(--work-digital-accent-soft));
}

/* ==========================================================
   Premium Travail paid reading pages
   ========================================================== */

.work-premium-draw-page .work-premium-hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(192, 160, 98, 0.22), transparent 34rem),
    linear-gradient(135deg, rgba(16, 42, 67, 0.96), rgba(33, 62, 84, 0.92));
  color: #fffdf8;
}

.work-premium-draw-page .work-premium-hero .work-draw-lead,
.work-premium-draw-page .work-premium-hero .work-draw-breadcrumb,
.work-premium-draw-page .work-premium-hero .work-draw-breadcrumb a {
  color: rgba(255, 253, 248, 0.78);
}

.work-premium-benefits,
.work-premium-faq {
  width: min(1060px, calc(100% - 32px));
  margin: 0 auto;
}

.work-premium-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.25rem);
}

.work-premium-benefits article,
.work-premium-faq details {
  border: 1px solid rgba(72, 101, 129, 0.2);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(16, 42, 67, 0.08);
  padding: clamp(1rem, 2.4vw, 1.35rem);
}

.work-premium-benefits h3,
.work-premium-faq h2,
.work-premium-final h2,
.work-premium-value h2,
.work-premium-paywall h2 {
  margin-top: 0;
}

.work-premium-journey {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.work-premium-value,
.work-premium-paywall,
.work-premium-final {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.work-premium-paywall {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.65fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.work-premium-paywall__actions {
  display: grid;
  gap: 0.75rem;
}

.work-premium-price {
  margin: 1.25rem 0 0;
  color: var(--work-navy, #102A43);
  font-size: clamp(1.7rem, 4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.work-premium-error {
  color: #8a2b20;
  font-weight: 750;
}

.work-premium-faq {
  display: grid;
  gap: 0.9rem;
}

.work-premium-faq summary {
  cursor: pointer;
  color: var(--work-navy, #102A43);
  font-weight: 850;
}

.work-premium-final {
  text-align: center;
}

.work-premium-final .reading-cta-primary {
  margin-top: 0.8rem;
}

@media (max-width: 820px) {
  .work-premium-benefits,
  .work-premium-paywall {
    grid-template-columns: 1fr;
  }

  .work-premium-journey {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   Stratégie & Décision premium UX pass
   ========================================================== */

.work-paid-draw-page .work-draw-section {
  padding-block: clamp(3rem, 7vw, 6rem);
}

.work-paid-draw-page .work-draw-actions,
.work-paid-draw-page .work-paid-paywall .reading-cta-primary,
.work-paid-draw-page .work-paid-final .reading-cta-primary {
  margin-top: clamp(1.6rem, 3vw, 2.35rem);
}

.work-paid-draw-page .work-draw-actions {
  gap: clamp(0.9rem, 2vw, 1.15rem);
}

.work-paid-draw-page .reading-cta-primary,
.work-paid-draw-page .reading-cta-secondary {
  min-height: 3.15rem;
  padding-inline: 1.35rem;
}

.work-paid-hero-card {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.8rem);
  align-content: start;
}

.work-paid-hero-fan {
  position: relative;
  min-height: clamp(12rem, 24vw, 16rem);
  margin: 0 auto 0.25rem;
  width: min(19rem, 100%);
}

.work-paid-hero-fan__card,
.work-paid-draw-deck__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(6.8rem, 14vw, 8.8rem);
  aspect-ratio: 5 / 7;
  border-radius: 0.95rem;
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.18);
  object-fit: cover;
}

.work-paid-hero-fan__card--left {
  transform: translate(-82%, -43%) rotate(-13deg);
}

.work-paid-hero-fan__card--right {
  transform: translate(-18%, -43%) rotate(12deg);
}

.work-paid-hero-fan__card--back,
.work-paid-draw-deck__card {
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) rotate(0deg);
  border: 1px solid rgba(192, 160, 98, 0.5);
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 160, 98, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 34%),
    var(--work-navy, #102A43);
  color: var(--work-gold, #C0A062);
  z-index: 2;
}

.work-paid-hero-fan__card--back::before,
.work-paid-draw-deck__card::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(250, 249, 247, 0.25);
  border-radius: 0.68rem;
}

.work-paid-editorial-block,
.work-paid-editorial-footer {
  width: min(48rem, 100%);
  margin-inline: auto;
  border-top: 1px solid rgba(192, 160, 98, 0.32);
  padding-top: clamp(1.35rem, 3vw, 1.9rem);
}

.work-paid-editorial-block h2,
.work-paid-editorial-footer h2,
.work-paid-faq h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.work-paid-editorial-block p:not(.work-draw-eyebrow),
.work-paid-editorial-footer p {
  margin-top: 1rem;
  color: rgba(34, 38, 43, 0.76);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.82;
}

.work-paid-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.6rem);
  max-width: 58rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

.work-paid-benefits article {
  border-top: 1px solid rgba(192, 160, 98, 0.36);
  padding-top: 1rem;
}

.work-paid-benefits h3 {
  font-size: clamp(1.22rem, 2vw, 1.45rem);
}

.work-paid-benefits p {
  margin-top: 0.65rem;
  color: rgba(34, 38, 43, 0.72);
}

.work-paid-draw-page .work-draw-positions {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 64rem;
  margin: clamp(2rem, 4vw, 2.8rem) auto 0;
}

.work-paid-draw-page .work-draw-positions .reading-step {
  display: grid;
  gap: 0.8rem;
  border-color: rgba(72, 101, 129, 0.12);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: none;
  padding: 1.15rem;
}

.work-paid-draw-page .work-draw-positions .reading-step::before {
  display: none;
}

.work-paid-draw-page .reading-step__number {
  width: auto;
  height: auto;
  justify-content: start;
  border: 0;
  background: transparent;
  color: rgba(192, 160, 98, 0.95);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
}

.work-paid-paywall-transition {
  max-width: 40rem;
  margin: 0 auto clamp(1rem, 2vw, 1.45rem);
  color: rgba(16, 42, 67, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.06rem, 1.9vw, 1.32rem);
  line-height: 1.45;
  text-align: center;
}

.work-paid-paywall {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 0.92fr);
  align-items: center;
  gap: clamp(1.25rem, 3.5vw, 2.4rem);
  max-width: 64rem;
  margin-inline: auto;
  border-color: rgba(192, 160, 98, 0.3);
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(192, 160, 98, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(250, 249, 247, 0.92));
  box-shadow: 0 20px 54px rgba(16, 42, 67, 0.11);
  overflow: hidden;
  text-align: left;
}

.work-paid-paywall__content {
  display: grid;
  gap: 1.05rem;
  align-content: center;
}

.work-paid-paywall__heading,
.work-paid-paywall__conversion {
  display: grid;
  gap: 0.85rem;
}

.work-paid-paywall__content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  color: var(--work-navy, #102A43);
}

.work-paid-paywall__intro {
  max-width: 34rem;
  margin: 0;
  color: rgba(34, 38, 43, 0.76);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.65;
}

.work-paid-paywall__price {
  margin: 0.1rem 0 0;
  color: var(--work-navy, #102A43);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1;
}

.work-paid-paywall__benefits {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(16, 42, 67, 0.82);
  font-size: 0.98rem;
}

.work-paid-paywall__benefits li {
  position: relative;
  padding-left: 1.65rem;
}

.work-paid-paywall__benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--work-gold, #C0A062);
  font-weight: 700;
}

.work-paid-checkout {
  justify-self: start;
  min-width: min(100%, 15.5rem);
  margin-top: 0.05rem;
}

.work-paid-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.work-paid-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  min-height: 32px;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(192, 160, 98, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(16, 42, 67, 0.78);
  font-size: 0.82rem;
  line-height: 1.25;
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.05);
}

.work-paid-trust-item svg {
  width: 0.92rem;
  height: 0.92rem;
  flex: 0 0 auto;
  color: var(--work-gold, #C0A062);
}

.work-paid-payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.05rem;
  color: rgba(16, 42, 67, 0.6);
}

.work-paid-payment-icons svg {
  width: 44px;
  height: 27px;
  flex: 0 0 auto;
}

.work-paid-payment-icons .payment-icon-large {
  width: 50px;
}

.work-paid-paywall__secure-note {
  margin: -0.05rem 0 0;
  color: rgba(34, 38, 43, 0.46);
  font-size: 0.78rem;
  line-height: 1.45;
}

.work-paid-status {
  min-height: 1.15rem;
  margin: -0.15rem 0 0;
  color: rgba(34, 38, 43, 0.46);
  font-size: 0.76rem;
  line-height: 1.45;
}

.work-paid-paywall__visual {
  position: relative;
  min-height: clamp(17rem, 27vw, 21rem);
  isolation: isolate;
  animation: workPaidDeckFloat 8s ease-in-out infinite;
}

.work-paid-paywall__visual::before {
  content: "";
  position: absolute;
  inset: 11% -3% 5% 4%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 52% 48%, rgba(246, 223, 183, 0.34), transparent 42%),
    radial-gradient(circle at 45% 58%, rgba(192, 160, 98, 0.18), transparent 66%);
  filter: blur(1px);
  z-index: -1;
  animation: workPaidHaloBreathe 7s ease-in-out infinite;
}

.work-paid-paywall__card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(7.25rem, 14vw, 9.9rem);
  aspect-ratio: 5 / 7;
  border: 1px solid rgba(192, 160, 98, 0.5);
  border-radius: 0.85rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(192, 160, 98, 0.18), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 34%),
    var(--work-navy, #102A43);
  box-shadow: 0 18px 38px rgba(16, 42, 67, 0.18);
  color: var(--work-gold, #C0A062);
}

.work-paid-paywall__card::before {
  content: "";
  position: absolute;
  inset: 0.5rem;
  border: 1px solid rgba(250, 249, 247, 0.24);
  border-radius: 0.58rem;
}

.work-paid-paywall__card--left {
  transform: translate(-88%, -44%) rotate(-15deg);
}

.work-paid-paywall__card--center {
  transform: translate(-50%, -52%) rotate(-1deg);
  z-index: 2;
}

.work-paid-paywall__card--right {
  transform: translate(-12%, -44%) rotate(15deg);
}

@keyframes workPaidDeckFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(0.35deg);
  }
}

@keyframes workPaidHaloBreathe {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(0.985);
  }

  50% {
    opacity: 1;
    transform: scale(1.025);
  }
}

.work-paid-draw-page .work-draw-board-shell {
  max-width: 68rem;
  margin-inline: auto;
  gap: clamp(1.7rem, 4vw, 2.6rem);
  border-color: rgba(192, 160, 98, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(192, 160, 98, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(255,255,255,0.9), rgba(250,249,247,0.96));
}

.work-paid-draw-deck {
  position: relative;
  min-height: 9.5rem;
  display: grid;
  place-items: center;
}

.work-paid-draw-deck__card {
  width: 6.6rem;
  position: relative;
  left: auto;
  top: auto;
  transform: rotate(-2deg);
}

.work-paid-draw-page .work-draw-start {
  justify-self: center;
  min-width: min(100%, 18rem);
  margin-block: 0.2rem 0.4rem;
}

.work-draw-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
  border: 1px solid rgba(72, 101, 129, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.7);
  padding: 0.9rem;
  text-align: center;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.08);
  transition-delay: var(--reveal-delay, 0ms);
}

.work-draw-card img {
  width: min(100%, 8.5rem);
  margin-inline: auto;
  border-radius: 0.75rem;
  box-shadow: 0 12px 26px rgba(16, 42, 67, 0.12);
}

.work-draw-card h3 {
  font-size: 1.12rem;
}

.work-draw-card__position {
  display: grid;
  gap: 0.25rem;
  color: rgba(16, 42, 67, 0.86);
  font-size: 0.88rem;
  line-height: 1.35;
}

.work-draw-card__position span {
  color: rgba(72, 101, 129, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-paid-interpretation {
  display: grid;
  grid-template-columns: 7rem minmax(0, 1fr);
  gap: clamp(1.1rem, 3vw, 1.8rem);
  align-items: start;
  border-top: 1px solid rgba(72, 101, 129, 0.16);
  padding-block: clamp(1.5rem, 3vw, 2.3rem);
}

.work-paid-interpretation .work-draw-interpretation-card {
  width: 7rem;
  border-radius: 0.75rem;
  box-shadow: 0 14px 30px rgba(16, 42, 67, 0.13);
}

.work-paid-interpretation h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

.work-paid-interpretation p:not(.work-draw-eyebrow) {
  margin-top: 0.85rem;
  color: rgba(34, 38, 43, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.8;
}

.work-paid-faq {
  max-width: 50rem;
}

.work-paid-faq details {
  border-top: 1px solid rgba(72, 101, 129, 0.14);
  padding-block: 1rem;
}

.work-paid-faq summary {
  cursor: pointer;
  color: var(--work-navy, #102A43);
  font-weight: 850;
}

.work-paid-faq p {
  margin-top: 0.8rem;
  color: rgba(34, 38, 43, 0.74);
}

.work-paid-final {
  max-width: 50rem;
  margin-inline: auto;
  text-align: center;
}

.work-paid-final p {
  margin-top: 1rem;
  color: rgba(34, 38, 43, 0.74);
}

@media (max-width: 980px) {
  .work-paid-benefits,
  .work-paid-draw-page .work-draw-positions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .work-paid-draw-page .work-draw-section {
    padding-block: clamp(2.6rem, 12vw, 4rem);
  }

  .work-paid-benefits,
  .work-paid-draw-page .work-draw-positions,
  .work-paid-interpretation {
    grid-template-columns: 1fr;
  }

  .work-paid-draw-page .work-draw-actions .reading-cta-primary,
  .work-paid-draw-page .work-draw-actions .reading-cta-secondary {
    width: 100%;
  }

  .work-paid-interpretation .work-draw-interpretation-card {
    width: min(8rem, 48vw);
  }

  .work-paid-paywall {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: clamp(1.25rem, 6vw, 1.65rem);
    text-align: center;
  }

  .work-paid-paywall__content,
  .work-paid-checkout {
    justify-items: center;
    justify-self: stretch;
  }

  .work-paid-paywall__content {
    display: contents;
  }

  .work-paid-paywall__heading {
    order: 1;
    justify-items: center;
  }

  .work-paid-paywall__visual {
    order: 2;
    min-height: clamp(11.5rem, 44vw, 14rem);
  }

  .work-paid-paywall__conversion {
    order: 3;
    justify-items: center;
    width: 100%;
  }

  .work-paid-paywall__intro {
    max-width: 28rem;
  }

  .work-paid-paywall__benefits {
    justify-self: center;
    text-align: left;
  }

  .work-paid-paywall__card {
    width: clamp(5.9rem, 24vw, 7.05rem);
  }

  .work-paid-trust-row,
  .work-paid-payment-icons {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-paid-paywall__visual,
  .work-paid-paywall__visual::before {
    animation: none;
  }
}

.work-paid-social-proof {
  display: grid;
  gap: clamp(1.7rem, 4vw, 2.6rem);
}

.work-paid-social-proof__header {
  max-width: 42rem;
}

.work-paid-social-proof__header h2,
.work-paid-author__panel h2 {
  margin-top: 0;
  color: var(--work-navy, #102A43);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.7rem);
  line-height: 1.08;
}

.work-paid-testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.45rem);
  width: min(64rem, 100%);
  margin-inline: auto;
}

.work-paid-testimonial {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1.35rem;
  min-height: 100%;
  border: 1px solid rgba(72, 101, 129, 0.12);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 253, 247, 0.58));
  box-shadow: 0 16px 38px rgba(16, 42, 67, 0.055);
  padding: clamp(1.25rem, 2.4vw, 1.6rem);
}

.work-paid-testimonial::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  right: 1rem;
  color: rgba(192, 160, 98, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 1;
}

.work-paid-testimonial p {
  margin: 0;
  color: rgba(34, 38, 43, 0.78);
  font-size: clamp(0.98rem, 1.5vw, 1.04rem);
  line-height: 1.78;
}

.work-paid-testimonial footer {
  border-top: 1px solid rgba(192, 160, 98, 0.22);
  padding-top: 0.85rem;
  color: rgba(16, 42, 67, 0.72);
  font-size: 0.9rem;
  font-weight: 750;
}

.work-paid-author__panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 3vw, 1.65rem);
  width: min(50rem, 100%);
  margin-inline: auto;
  border-top: 1px solid rgba(192, 160, 98, 0.24);
  border-bottom: 1px solid rgba(72, 101, 129, 0.1);
  padding-block: clamp(1.35rem, 3vw, 1.8rem);
}

.work-paid-author__portrait {
  width: clamp(5.2rem, 11vw, 7.2rem);
  aspect-ratio: 1;
  border: 1px solid rgba(192, 160, 98, 0.34);
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.12);
}

.work-paid-author__panel p {
  margin: 0.85rem 0 0;
  color: rgba(34, 38, 43, 0.74);
  font-size: clamp(1rem, 1.7vw, 1.08rem);
  line-height: 1.78;
}

.work-paid-responsibility {
  max-width: 42rem;
  color: rgba(34, 38, 43, 0.55);
  font-size: 0.92rem;
  line-height: 1.75;
  text-align: center;
}

.work-paid-responsibility p {
  margin: 0;
}

@media (max-width: 820px) {
  .work-paid-testimonials {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .work-paid-author__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .work-paid-author__portrait {
    margin-inline: auto;
  }
}
