/* DeepAnswer landing variants.
   Mirrors the app tokens from mockups/styles.css and Compose theme. */
:root {
  --sky: #6cabdd;
  --sky-deep: #4f94cc;
  --sky-tint: #e8f1f9;
  --navy: #1c2c5b;
  --navy-soft: #3a4a78;
  --ink: #0f1626;
  --paper: #faf8f4;
  --paper-2: #f2efe8;
  --card: #ffffff;
  --rule: #e6e2d9;
  --muted: #8a8475;
  --ok: #5f8f60;
  --ok-tint: #e6eedf;
  --ask: #c2823a;
  --ask-tint: #f2e6cf;
  --foil: #f4ebd8;
  --cinnabar: #b14a3a;
  --teal: #3e6e78;
  --olive: #7c8a5c;
  --ochre: #8c6939;
  --amber: #a6712e;
  --indigo: #454a66;
  --max: 1180px;
  --shadow: 0 1px 2px rgba(28, 44, 91, 0.05), 0 18px 44px -28px rgba(28, 44, 91, 0.32);
  --shadow-strong: 0 4px 18px rgba(15, 22, 38, 0.08), 0 36px 80px -34px rgba(15, 22, 38, 0.44);
  --font-ui: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Fraunces, Georgia, "Times New Roman", serif;
  --font-cn: "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.serif {
  font-family: var(--font-serif);
  font-weight: 600;
}

.nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(230, 226, 217, 0.72);
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(16px) saturate(150%);
}

.nav.dark {
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: rgba(15, 22, 38, 0.84);
  color: #fff;
}

.nav-inner {
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--sky);
}

.nav.dark .brand-mark {
  background: #fff;
  color: var(--navy);
}

.brand-name {
  display: grid;
  gap: 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.05;
}

.nav.dark .brand-name {
  color: #fff;
}

.brand-name small {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav.dark .brand-name small {
  color: rgba(255, 255, 255, 0.62);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy-soft);
  font-size: 14px;
  font-weight: 650;
}

.nav.dark .nav-links {
  color: rgba(255, 255, 255, 0.76);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav.dark .nav-links a:hover {
  color: #fff;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  padding: 13px 22px;
  background: var(--sky);
  box-shadow: 0 14px 28px -18px rgba(79, 148, 204, 0.9);
  color: var(--navy);
}

.btn-primary:hover {
  background: #7db8e3;
}

.btn-navy {
  padding: 13px 22px;
  background: var(--navy);
  color: #fff;
}

.btn-paper {
  padding: 13px 22px;
  border-color: var(--rule);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy);
}

.btn-outline-light {
  padding: 13px 22px;
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sky-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  padding-top: 68px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(rgba(28, 44, 91, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 44, 91, 0.025) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.5;
}

.hero-content {
  position: relative;
  display: grid;
  min-height: calc(86vh - 68px);
  align-items: center;
  padding: 56px 0 64px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.hero h1 {
  margin-top: 18px;
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p.lede {
  max-width: 590px;
  margin-top: 22px;
  color: var(--navy-soft);
  font-size: 19px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 32px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-points svg {
  color: var(--ok);
}

.hero-scene {
  position: absolute;
  z-index: 1;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: -26px;
  width: 560px;
  height: 660px;
  pointer-events: none;
}

.hero-scene.wide {
  right: max(8px, calc((100vw - var(--max)) / 2 - 20px));
  width: 650px;
}

.paper-sheet {
  position: absolute;
  right: 150px;
  bottom: 66px;
  width: 380px;
  height: 510px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
}

.paper-sheet::before {
  position: absolute;
  inset: 34px 34px auto;
  height: 1px;
  background: var(--rule);
  box-shadow: 0 42px 0 var(--rule), 0 84px 0 var(--rule), 0 126px 0 var(--rule), 0 168px 0 var(--rule), 0 210px 0 var(--rule);
  content: "";
}

.phone-shell {
  position: absolute;
  right: 20px;
  bottom: 40px;
  width: 268px;
  height: 566px;
  border: 10px solid #0f1626;
  border-radius: 44px;
  background: #0f1626;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.phone-shell.large {
  right: 82px;
  bottom: 30px;
  width: 296px;
  height: 622px;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 33px;
  background: var(--paper);
}

.phone-screen::before {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 0 0 14px 14px;
  background: #0f1626;
  content: "";
  transform: translateX(-50%);
}

.app-mini {
  padding: 34px 18px 20px;
  color: var(--ink);
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.wordmark {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
}

.wordmark span {
  color: var(--sky-deep);
}

.app-mini h3 {
  margin-top: 22px;
  font-family: var(--font-serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.16;
}

.ask-card {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid #f0ece3;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.ask-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.input-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
  margin-top: 18px;
}

.input-row span {
  display: grid;
  min-height: 62px;
  place-items: center;
  border-radius: 14px;
  background: var(--paper-2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
}

.input-row span:first-child {
  background: var(--sky);
}

.mini-card {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--paper-2);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.shot-frame {
  position: absolute;
  overflow: hidden;
  border: 10px solid #0f1626;
  border-radius: 42px;
  background: #0f1626;
  box-shadow: var(--shadow-strong);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-frame.patch-brand::before {
  position: absolute;
  z-index: 2;
  top: 43px;
  left: 14px;
  width: 160px;
  height: 66px;
  border-radius: 6px;
  background: var(--paper);
  content: "";
}

.shot-frame.patch-brand::after {
  position: absolute;
  z-index: 3;
  top: 62px;
  left: 24px;
  color: var(--ink);
  content: "DeepAnswer.";
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 650;
}

.shot-main {
  right: 42px;
  bottom: 26px;
  width: 258px;
  height: 574px;
}

.shot-small {
  right: 270px;
  bottom: 96px;
  width: 190px;
  height: 422px;
  opacity: 0.82;
  transform: rotate(-7deg);
}

.hero-badge {
  position: absolute;
  z-index: 8;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #f0ece3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.hero-badge svg {
  color: var(--sky-deep);
}

.badge-one {
  right: 286px;
  bottom: 132px;
}

.badge-two {
  right: 0;
  bottom: 548px;
}

.hero.dark-hero {
  background: var(--ink);
  color: #fff;
}

.hero.dark-hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.hero.dark-hero .lede,
.hero.dark-hero .hero-points,
.hero.dark-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero.dark-hero .eyebrow::before {
  background: var(--sky);
}

.lock-panel {
  position: absolute;
  right: 20px;
  bottom: 68px;
  width: 420px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
}

.lock-panel h3 {
  color: #fff;
  font-family: var(--font-serif);
  font-size: 29px;
  font-weight: 650;
  line-height: 1.15;
}

.lock-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  margin-top: 20px;
  align-items: center;
}

.lock-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 18px;
  background: var(--sky);
  color: var(--navy);
}

.lock-row strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.lock-row span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.blocked-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.blocked-grid span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 750;
}

.book-tableau {
  position: absolute;
  right: 12px;
  bottom: 20px;
  width: 660px;
  height: 600px;
}

.book-open {
  position: absolute;
  right: 132px;
  bottom: 22px;
  width: 470px;
  height: 330px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: linear-gradient(90deg, #fffdf8 0 49%, #efe8dc 50%, #fffdf8 51% 100%);
  box-shadow: var(--shadow-strong);
  transform: rotate(-3deg);
}

.book-open::before,
.book-open::after {
  position: absolute;
  top: 54px;
  width: 160px;
  height: 1px;
  background: var(--rule);
  box-shadow: 0 34px 0 var(--rule), 0 68px 0 var(--rule), 0 102px 0 var(--rule), 0 136px 0 var(--rule);
  content: "";
}

.book-open::before {
  left: 54px;
}

.book-open::after {
  right: 54px;
}

.book-stack {
  position: absolute;
  right: 28px;
  bottom: 314px;
  display: grid;
  gap: 9px;
}

.book-spine {
  display: flex;
  width: 238px;
  height: 46px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-radius: 6px 12px 12px 6px;
  box-shadow: var(--shadow);
  color: var(--foil);
  font-family: var(--font-cn);
  font-weight: 700;
}

.book-spine small {
  color: rgba(244, 235, 216, 0.72);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 86px 0;
}

.section.compact {
  padding: 64px 0;
}

.band {
  background: var(--paper-2);
}

.section-head {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 650;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-head p {
  margin-top: 14px;
  color: var(--navy-soft);
  font-size: 17px;
  line-height: 1.72;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--rule);
}

.proof-item {
  padding: 24px;
  background: var(--paper);
}

.proof-item strong {
  display: block;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 25px;
  font-weight: 650;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 28px;
  border: 1px solid #f0ece3;
  border-radius: 18px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.feature-card .icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--sky-tint);
  color: var(--sky-deep);
}

.feature-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.2;
}

.feature-card p {
  margin-top: 10px;
  color: var(--navy-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.04fr 0.96fr;
}

.visual-panel {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid #f0ece3;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow);
}

.visual-panel.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--ink);
  color: #fff;
}

.visual-pad {
  padding: 30px;
}

.step-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.step-line {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 13px;
  align-items: start;
}

.step-line b {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--sky-tint);
  color: var(--sky-deep);
  font-family: var(--font-serif);
}

.step-line strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
}

.step-line span {
  display: block;
  margin-top: 3px;
  color: var(--navy-soft);
  font-size: 14px;
}

.answer-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.answer-card .label,
.report-note .label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-card h3 {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 650;
}

.line {
  height: 8px;
  margin-top: 13px;
  border-radius: 999px;
  background: var(--rule);
}

.line.navy {
  width: 76%;
  background: var(--navy);
}

.line.sky {
  width: 52%;
  background: var(--sky);
}

.library-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 30px;
}

.subject-book {
  min-height: 144px;
  padding: 18px 14px;
  border-radius: 8px;
  box-shadow: inset -8px 0 rgba(0, 0, 0, 0.16), var(--shadow);
  color: var(--foil);
}

.subject-book b {
  display: block;
  font-family: var(--font-cn);
  font-size: 27px;
  line-height: 1.05;
}

.subject-book small {
  display: block;
  margin-top: 5px;
  color: rgba(244, 235, 216, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subject-book span {
  display: inline-block;
  margin-top: 35px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(244, 235, 216, 0.16);
  font-size: 11px;
  font-weight: 750;
}

.report-note {
  padding: 28px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--paper);
}

.report-note h3 {
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1.24;
}

.bar-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px;
  align-items: end;
  height: 108px;
  margin-top: 26px;
}

.bar-row span {
  border-radius: 8px 8px 3px 3px;
  background: var(--sky);
}

.bar-row span:nth-child(2n) {
  background: var(--sky-deep);
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.capture {
  overflow: hidden;
  border: 8px solid #0f1626;
  border-radius: 28px;
  background: #0f1626;
  box-shadow: var(--shadow);
}

.capture img {
  aspect-ratio: 9 / 16;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.quote {
  padding: 48px;
  border-left: 5px solid var(--sky);
  background: var(--card);
  box-shadow: var(--shadow);
}

.quote p {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.25;
}

.quote span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.cta-band {
  padding: 76px 0;
  background: var(--navy);
  color: #fff;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-card h2 {
  font-family: var(--font-serif);
  font-size: 43px;
  font-weight: 650;
  line-height: 1.12;
}

.cta-card p {
  max-width: 660px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.footer {
  padding: 36px 0 42px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
}

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

.footer a {
  color: var(--navy);
  font-weight: 750;
}

@media (max-width: 1080px) {
  .hero-scene,
  .book-tableau {
    right: -120px;
    opacity: 0.55;
  }

  .lock-panel {
    right: -20px;
    opacity: 0.52;
  }

  .hero-copy {
    max-width: 700px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 34px, var(--max));
  }

  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: 760px;
    align-items: start;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero p.lede {
    font-size: 17px;
  }

  .hero-scene,
  .book-tableau {
    right: -180px;
    bottom: -110px;
    transform: scale(0.72);
    transform-origin: right bottom;
  }

  .lock-panel {
    right: -148px;
    bottom: -20px;
    transform: scale(0.74);
    transform-origin: right bottom;
  }

  .proof-strip,
  .grid-3,
  .grid-2,
  .split,
  .split.reverse,
  .cta-card {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 20px 17px;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .cta-card h2 {
    font-size: 33px;
  }

  .library-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px;
  }

  .image-row {
    grid-template-columns: 1fr;
  }

  .capture {
    max-width: 260px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 17px;
  }

  .hero-content {
    min-height: 790px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-scene,
  .book-tableau {
    right: -250px;
    opacity: 0.44;
  }

  .hero-badge {
    display: none;
  }
}
