:root {
  --bg: #08090d;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --text: #f7f8ff;
  --muted: #aeb3c7;
  --line: rgba(255, 255, 255, 0.16);
  --pink: #ff3d81;
  --cyan: #19d9ff;
  --lime: #a7ff3d;
  --yellow: #ffd84c;
  --red: #ff493d;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 61, 129, 0.34), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(25, 217, 255, 0.24), transparent 32%),
    radial-gradient(circle at 75% 85%, rgba(167, 255, 61, 0.16), transparent 28%),
    var(--bg);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.cursor-glow {
  position: fixed;
  left: var(--x, 50%);
  top: var(--y, 40%);
  z-index: -1;
  width: 380px;
  height: 380px;
  pointer-events: none;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(25, 217, 255, 0.18), transparent 62%);
  transform: translate(-50%, -50%);
  transition: left 0.18s ease, top 0.18s ease;
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background: linear-gradient(135deg, var(--yellow), var(--cyan), var(--pink));
  transform: translateY(-100%);
  opacity: 0;
}

body.is-transitioning .page-wipe {
  animation: page-wipe 0.72s cubic-bezier(0.76, 0, 0.24, 1);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(8, 9, 13, 0.72);
  backdrop-filter: blur(18px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #0b0d12;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  box-shadow: 0 10px 30px rgba(255, 61, 129, 0.35);
}

.nav {
  gap: 6px;
}

.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav a:hover {
  color: var(--text);
  background: var(--panel);
}

.hero,
.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 84px);
  padding: 84px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Anton, Impact, sans-serif;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.4rem, 5vw, 5rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-text,
.section-heading p,
.about-text,
.price-panel p,
.contact-copy p,
.work-card p,
.process p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-text {
  max-width: 690px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: inherit;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #08090d;
  background: linear-gradient(135deg, var(--yellow), var(--lime));
  box-shadow: 0 16px 44px rgba(167, 255, 61, 0.18);
}

.button.secondary {
  background: var(--panel);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
}

.stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.stats dt {
  font-family: Anton, Impact, sans-serif;
  font-size: 2.1rem;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-stage {
  position: relative;
  min-height: 600px;
  perspective: 1200px;
}

.motion-ribbon {
  position: absolute;
  z-index: 0;
  width: 56%;
  height: 92px;
  border-radius: 999px;
  opacity: 0.6;
  filter: blur(2px);
  transform: rotate(-9deg);
  animation: ribbon-slide 5.5s ease-in-out infinite;
}

.ribbon-a {
  top: 118px;
  right: 12px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), transparent);
}

.ribbon-b {
  left: 10px;
  bottom: 178px;
  background: linear-gradient(90deg, var(--cyan), var(--lime), transparent);
  animation-delay: -2.2s;
}

.thumbnail-showcase {
  position: absolute;
  inset: 84px 0 auto auto;
  width: min(100%, 520px);
  aspect-ratio: 16 / 10;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
  transform: rotateX(6deg) rotateY(-10deg);
  animation: float-card 5s ease-in-out infinite;
}

.thumb-topline {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.thumb-scene {
  position: relative;
  height: calc(100% - 28px);
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(255, 61, 129, 0.8) 0 20%, transparent 20% 42%, rgba(167, 255, 61, 0.85) 42% 62%, transparent 62%),
    radial-gradient(circle at 15% 25%, rgba(255, 216, 76, 0.75), transparent 25%),
    radial-gradient(circle at 88% 72%, rgba(25, 217, 255, 0.68), transparent 30%),
    #121723;
}

.thumb-scene::before,
.thumb-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.thumb-scene::before {
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 10px, transparent 10px 26px),
    linear-gradient(to top, rgba(0, 0, 0, 0.48), transparent 54%);
  mix-blend-mode: screen;
  opacity: 0.62;
  animation: texture-drift 9s linear infinite;
}

.thumb-scene::after {
  inset: auto -14% 4% -14%;
  height: 36%;
  background: rgba(5, 8, 16, 0.78);
  transform: skewY(-4deg);
}

.hero-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(44%, 230px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.3);
  object-fit: cover;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.45);
  filter: drop-shadow(0 0 28px rgba(255, 255, 255, 0.18));
  transform: translate(-50%, -50%) rotate(-2deg);
  animation: logo-pulse 3.5s ease-in-out infinite;
}

.scan-line {
  position: absolute;
  inset: -30% 0 auto;
  z-index: 4;
  height: 90px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: rotate(-8deg);
  animation: scan 3.8s ease-in-out infinite;
}

.burst {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  color: #0b0d12;
  font-family: Anton, Impact, sans-serif;
  font-size: 1.65rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.burst-a {
  top: 18px;
  left: 18px;
  background: var(--yellow);
  transform: rotate(-12deg);
}

.burst-b {
  top: 18px;
  right: 20px;
  background: var(--lime);
  transform: rotate(10deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  animation: spin 14s linear infinite;
}

.orbit-one {
  inset: 38px 30px 74px 12px;
}

.orbit-two {
  inset: 0 94px 110px 60px;
  animation-direction: reverse;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 9, 13, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  font-weight: 900;
  animation: float-chip 4.4s ease-in-out infinite;
}

.card-a {
  top: 48px;
  right: 40px;
}

.card-b {
  left: 4px;
  bottom: 170px;
  animation-delay: -1.3s;
}

.card-c {
  right: 34px;
  bottom: 92px;
  animation-delay: -2.4s;
}

.section {
  padding: 80px 0;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
}

.strip p {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-weight: 900;
  text-align: center;
}

.split,
.pricing,
.contact {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: start;
}

.about-text {
  display: grid;
  gap: 16px;
}

.about-text p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.gallery,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.work-card,
.price-panel,
.process article,
.quote-grid figure,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.work-card {
  padding: 14px;
  transform: translateY(0) rotate(0deg);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.45s ease, background 0.45s ease;
  animation: work-float 6s ease-in-out infinite;
}

.work-card:nth-child(2n) {
  animation-delay: -1.6s;
}

.work-card:nth-child(3n) {
  animation-delay: -3.1s;
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-12px) rotate(-1deg);
  animation-play-state: paused;
}

.featured-work {
  grid-column: span 2;
}

.image-frame,
.catch-badge {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.24);
}

.image-frame {
  aspect-ratio: 16 / 9;
}

.square-frame {
  aspect-ratio: 1 / 1;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.image-frame.missing-image {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 22px;
  border: 1px dashed rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 216, 76, 0.18), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(25, 217, 255, 0.18), transparent 32%),
    rgba(255, 255, 255, 0.055);
  text-align: center;
}

.image-frame.missing-image img {
  display: none;
}

.image-frame.missing-image::before {
  content: "Ajoute le fichier : images/" attr(data-file);
  position: relative;
  z-index: 1;
  color: var(--text);
  font-weight: 900;
  line-height: 1.45;
}

.work-card:hover .image-frame img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.06);
}

.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.32), transparent 48%);
  pointer-events: none;
}

.catch-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 216, 76, 0.24), transparent 34%),
    radial-gradient(circle at 90% 80%, rgba(25, 217, 255, 0.2), transparent 36%),
    rgba(255, 255, 255, 0.075);
}

.catch-badge {
  display: grid;
  align-content: end;
  min-height: 260px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(167, 255, 61, 0.5), rgba(25, 217, 255, 0.28)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.16) 50% 75%, transparent 75%);
  background-size: auto, 34px 34px;
}

.catch-badge span {
  color: #071016;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catch-badge strong {
  color: white;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.92;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.38);
}

.label {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 8px 11px;
  border-radius: 10px;
  color: #0b0d12;
  background: var(--yellow);
  font-weight: 900;
}

.work-card h3,
.work-card p {
  padding: 0 8px;
}

.pricing {
  align-items: stretch;
}

.price-panel {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 216, 76, 0.16), rgba(255, 61, 129, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.checks {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.checks li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 17px;
  height: 17px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.process {
  display: grid;
  gap: 14px;
}

.process article {
  padding: 22px;
}

.process span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--cyan);
  font-weight: 900;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
}

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

.quote-grid figure {
  margin: 0;
  padding: 24px;
}

blockquote {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.55;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
}

.contact-card a,
.contact-link,
.modal-links a {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 0;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.contact-card span,
.contact-link span,
.modal-links span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-link strong,
.modal-links strong {
  overflow-wrap: anywhere;
  font-size: 1.22rem;
}

.contact-card em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 800;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.contact-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(620px, 100%);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 0, rgba(255, 216, 76, 0.18), transparent 30%),
    radial-gradient(circle at 90% 100%, rgba(25, 217, 255, 0.18), transparent 34%),
    rgba(8, 9, 13, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(28px) scale(0.96);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-modal.is-open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 10px, transparent 10px 28px);
  opacity: 0.42;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-panel > * {
  position: relative;
  z-index: 1;
}

.modal-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.modal-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.modal-price span {
  color: var(--muted);
  font-weight: 900;
}

.modal-price strong {
  color: var(--lime);
  font-size: 1.16rem;
}

.modal-links {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.modal-links a,
.modal-links .contact-link {
  background: rgba(255, 255, 255, 0.08);
}

.footer {
  display: flex;
  justify-content: space-between;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-card {
  0%,
  100% {
    transform: rotateX(6deg) rotateY(-10deg) translateY(0);
  }

  50% {
    transform: rotateX(8deg) rotateY(-7deg) translateY(-16px);
  }
}

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

@keyframes ribbon-slide {
  0%,
  100% {
    transform: translate3d(-12px, 0, 0) rotate(-9deg) scaleX(0.92);
  }

  50% {
    transform: translate3d(18px, -10px, 0) rotate(-5deg) scaleX(1.05);
  }
}

@keyframes texture-drift {
  to {
    background-position: 120px 120px, 0 0;
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1);
  }

  50% {
    transform: translate(-50%, -52%) rotate(1deg) scale(1.045);
  }
}

@keyframes scan {
  0% {
    top: -35%;
    opacity: 0;
  }

  25%,
  70% {
    opacity: 1;
  }

  100% {
    top: 108%;
    opacity: 0;
  }
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

  50% {
    transform: translateY(-10px) rotate(0.7deg);
  }
}

@keyframes page-wipe {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }

  45% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(100%);
    opacity: 1;
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero,
  .split,
  .pricing,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero-stage {
    min-height: 470px;
  }

  .thumbnail-showcase {
    inset: 34px auto auto 50%;
    width: min(96%, 520px);
    transform: translateX(-50%) rotateX(6deg) rotateY(-8deg);
  }

  .strip,
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand {
    width: 100%;
  }

  .nav a {
    padding: 9px 8px;
    font-size: 0.82rem;
  }

  .hero,
  .section,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-actions,
  .footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .modal-price {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats,
  .strip,
  .gallery,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 380px;
  }

  .thumbnail-showcase {
    padding: 12px;
    border-radius: 18px;
  }

  .thumb-scene {
    border-radius: 12px;
  }

  .floating-card {
    display: none;
  }

  .mock-thumbnail {
    min-height: 210px;
  }

  .mock-thumbnail strong {
    font-size: 2.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
