:root {
  --font: "Manrope", "Segoe UI", sans-serif;
  --phone-w: min(100vw, 390px);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --shadow-soft: 0 10px 30px rgba(8, 20, 60, 0.08);
  --page-bg-top: #020617;
  --page-bg-bottom: #0a1a3d;
  --frame-edge: #0b1529;
  --card-bg: #f8fbff;
  --header-top: #02071a;
  --header-mid: #06153a;
  --header-bottom: #0a2f74;
  --header-glow: transparent;
  --accent: #22d3ee;
  --ink: #07105f;
  --muted: #63708c;
  --role: #0072f5;
  --chip-border: #dce7f3;
  --icon-bg: #eaf4ff;
  --icon-fg: #0072f5;
  --avatar-from: #0072f5;
  --avatar-to: #22d3ee;
  --qr-frame: #f5f9ff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(18, 53, 111, 0.55), transparent 55%),
    linear-gradient(180deg, #020617 0%, #071428 48%, #0a1a3d 100%);
  overflow-x: hidden;
  transition: background 0.9s cubic-bezier(0.33, 1, 0.68, 1);
}

body.is-booting {
  background: #020617;
  overflow: hidden;
}

body::before,
body::after {
  display: none;
}

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

/* ——— Boot / loading ——— */
.boot {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.boot-panel {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #020617 0%, #0a1a3d 55%, #12356f 100%);
  border-radius: 0;
  overflow: hidden;
  will-change: top, left, width, height, border-radius, opacity;
  transition:
    top 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s cubic-bezier(0.33, 1, 0.68, 1);
}

.boot-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  width: min(320px, 82%);
  text-align: center;
}

.boot-logo {
  width: min(210px, 68%);
  height: auto;
  opacity: 0;
  transform: scale(0.96) translateY(8px);
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.boot.is-alive .boot-logo {
  animation: logoTambouille 1.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.boot-stage {
  position: relative;
  width: 100%;
  min-height: 2rem;
}

/* 3 points horizontaux pendant le chargement */
.boot-loader {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
  transition: opacity 0.45s cubic-bezier(0.33, 1, 0.68, 1);
}

.boot-loader i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dd3fc;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.boot.is-alive .boot-loader i {
  opacity: 1;
  transform: scale(1);
  animation: bootBounce 1.4s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
}

.boot.is-alive .boot-loader i:nth-child(2) {
  animation-delay: 0.18s;
}

.boot.is-alive .boot-loader i:nth-child(3) {
  animation-delay: 0.36s;
}

.boot.is-writing .boot-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
  transition: opacity 0.35s ease;
}

.boot-logo.is-flying {
  position: fixed;
  z-index: 1003;
  margin: 0;
  max-width: none;
  animation: none !important;
  will-change: top, left, width, height, opacity;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
  transition:
    top 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    left 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    width 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    height 1.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.boot-logo.is-flying.is-landed {
  opacity: 0;
}

.boot.is-clear .boot-panel {
  opacity: 0;
  background: transparent;
}

/* Cursors fixed — animent sur les vrais textes du header */
.boot-cursors i {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7dd3fc;
  opacity: 0;
  z-index: 1002;
  pointer-events: none;
  margin: 0;
  will-change: transform, opacity;
  box-shadow: 0 0 10px rgba(125, 211, 252, 0.35);
}

.boot.is-done {
  opacity: 0;
}

/* Header texts: clipped until written by the dot animation */
body.is-booting .card-header .headline,
body.is-booting .card-header .subline,
body.is-booting .card-header .tagline {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}

body.is-header-written .card-header .headline,
body.is-header-written .card-header .subline,
body.is-header-written .card-header .tagline {
  clip-path: none;
  opacity: 1;
}

.phone {
  position: relative;
  z-index: 1;
  width: var(--phone-w);
  max-width: 100%;
  border-radius: 42px;
  padding: 10px;
  background: linear-gradient(165deg, #101a33 0%, #070e1f 55%, #050a16 100%);
  box-shadow:
    0 0 0 1px rgba(125, 211, 252, 0.14),
    0 28px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  visibility: hidden;
}

body.is-booting .phone {
  /* Visible under the boot overlay so the header background is ready */
  visibility: visible;
  opacity: 1;
}

body.is-settled .phone,
body.is-ready .phone {
  visibility: visible;
  opacity: 1;
  animation: none;
}

.card-header .logo {
  opacity: 1;
  transform: none;
  animation: none !important;
  filter: none;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--card-bg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 62%
  );
  transform: translateX(-130%);
  opacity: 0;
}

body.is-ready .card::after {
  animation: shineSweep 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards;
}

.card-header {
  position: relative;
  isolation: isolate;
  padding: 44px 28px 78px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #020617 0%,
    #0a1a3d 55%,
    #12356f 100%
  );
}

.card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.card-header::after {
  display: none;
}

.header-deco {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

body.is-ready .reveal {
  animation: riseIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--reveal-delay, 0s);
}

.logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(210px, 68%);
  height: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}

.headline {
  position: relative;
  z-index: 1;
  margin: 0;
  text-align: center;
  font-size: clamp(1.35rem, 5.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-transform: uppercase;
}

.subline {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.98rem;
  font-weight: 500;
  color: color-mix(in srgb, #fff 78%, var(--accent));
}

.tagline {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
}

.card-body {
  position: relative;
  z-index: 2;
  margin-top: -42px;
  padding: 0 22px 28px;
  text-align: center;
}

body.is-booting .card-header .logo {
  opacity: 0;
  visibility: hidden;
}

body.is-logo-ready .card-header .logo {
  opacity: 1;
  visibility: visible;
}

body.is-booting .card-body {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.is-ready .card-body {
  visibility: visible;
  pointer-events: auto;
  animation: bodyFade 0.5s ease forwards;
}

.avatar {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  background: linear-gradient(145deg, var(--avatar-from), var(--avatar-to));
  box-shadow:
    0 0 0 5px var(--card-bg),
    0 12px 24px rgba(8, 20, 60, 0.18);
  --reveal-delay: 0.05s;
  opacity: 0;
  transform: translateY(28px) scale(0.72);
}

body.is-ready .avatar.reveal {
  animation: avatarFloat 1.05s cubic-bezier(0.16, 1, 0.3, 1) 0.05s forwards;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--avatar-to) 65%, transparent);
  opacity: 0;
  transform: scale(0.75);
  pointer-events: none;
}

body.is-ready .avatar::after {
  animation: avatarRing 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.28s forwards;
}

.person {
  margin: 0 0 4px;
}

.person-name {
  margin: 0;
  font-size: clamp(1.28rem, 4.6vw, 1.52rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #0b1630;
  --reveal-delay: 0.2s;
}

.person-name .lastname {
  display: inline;
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.is-ready .person-name.reveal {
  animation: titleSettle 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.person-meta {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0b1630;
  --reveal-delay: 0.3s;
}

.person-meta::before,
.person-meta::after {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11, 22, 48, 0.35), transparent);
}

.person-meta::before {
  background: linear-gradient(90deg, transparent, rgba(11, 22, 48, 0.4));
}

.person-meta::after {
  background: linear-gradient(90deg, rgba(11, 22, 48, 0.4), transparent);
}

body.is-ready .person-meta.reveal {
  animation: fadeRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.person-role {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #334155;
  --reveal-delay: 0.38s;
}

body.is-ready .person-role.reveal {
  animation: fadeRise 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.38s forwards;
}

.contacts {
  display: grid;
  gap: 12px;
  margin: 22px 0 18px;
}

.contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  background: #0b1630;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  color: #fff;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  --reveal-delay: 0.5s;
  opacity: 0;
  transform: translateY(16px);
}

.contact:nth-child(2) {
  --reveal-delay: 0.62s;
}

body.is-ready .contact.reveal:nth-child(1) {
  animation: fadeRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

body.is-ready .contact.reveal:nth-child(2) {
  animation: fadeRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.62s forwards;
}

.contact:hover {
  transform: translateY(-2px);
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.contact-icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  word-break: break-word;
  text-align: left;
}

.qr-panel {
  padding: 18px 16px 16px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1.5px solid var(--chip-border);
  box-shadow: var(--shadow-soft);
  --reveal-delay: 0.76s;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
}

body.is-ready .qr-panel.reveal {
  animation: panelLift 1s cubic-bezier(0.16, 1, 0.3, 1) 0.76s forwards;
}

.qr-title {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0;
}

body.is-ready .qr-title {
  animation: fadeRise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.qr-wrap {
  position: relative;
  width: 132px;
  height: 132px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(11, 22, 48, 0.12);
  box-shadow: 0 6px 18px rgba(8, 20, 60, 0.08);
}

.qr-wrap.is-zoomable {
  cursor: zoom-in;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.qr-wrap.is-zoomable:hover {
  border-color: rgba(11, 22, 48, 0.22);
  box-shadow: 0 10px 24px rgba(8, 20, 60, 0.14);
}

.qr-wrap.is-zoomable:focus-visible {
  outline: 2px solid #0b1630;
  outline-offset: 3px;
}

#qr-code {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  pointer-events: none;
}

#qr-code canvas,
#qr-code img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  border-radius: 8px;
}

#qr-code table {
  display: none;
}

.qr-note {
  margin: 12px 0 0;
  font-size: 0.72rem;
  color: var(--muted);
}

/* QR zoom overlay */
body.is-qr-zoomed {
  overflow: hidden;
}

.qr-zoom {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.qr-zoom.is-open {
  opacity: 1;
}

.qr-zoom.is-leaving {
  opacity: 0;
}

.qr-zoom-card {
  width: min(320px, 100%);
  padding: 22px 20px 18px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.qr-zoom.is-open .qr-zoom-card {
  transform: scale(1);
}

.qr-zoom.is-leaving .qr-zoom-card {
  transform: scale(0.94);
}

.qr-zoom-code {
  width: 260px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.qr-zoom-code canvas,
.qr-zoom-code img {
  width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: 10px;
}

.qr-zoom-code table {
  display: none;
}

.qr-zoom-note {
  margin: 14px 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.qr-zoom-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.qr-zoom-close svg {
  display: block;
}

.actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 18px;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.3s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0b1630;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(16px);
}

.btn-primary:hover {
  background: #101d3d;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

body.is-ready .btn-primary {
  animation: ctaRise 0.85s cubic-bezier(0.16, 1, 0.3, 1) 1.28s forwards;
}

body.is-ready .btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 48%,
    transparent 65%
  );
  transform: translateX(-120%);
  animation: btnShine 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.7s forwards;
  pointer-events: none;
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--chip-border);
  opacity: 0;
  transform: translateY(12px);
}

.quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 0;
  --reveal-delay: 1.4s;
}

body.is-ready .quick-actions.reveal {
  animation: none;
  opacity: 1;
  transform: none;
}

body.is-ready .quick-actions .btn-ghost:nth-child(1) {
  animation: fadeRise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
}

body.is-ready .quick-actions .btn-ghost:nth-child(2) {
  animation: fadeRise 0.75s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.quick-actions .btn {
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  padding: 12px 10px;
}

@keyframes phoneReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bodyFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes logoTambouille {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  60% {
    opacity: 1;
    transform: scale(1.015) translateY(-1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes bootBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes riseIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRise {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleSettle {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes panelLift {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes ctaRise {
  0% {
    opacity: 0;
    transform: translateY(16px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes btnShine {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes avatarFloat {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.72);
  }
  70% {
    opacity: 1;
    transform: translateY(-3px) scale(1.03);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes avatarRing {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  45% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes shineSweep {
  0% {
    opacity: 0;
    transform: translateX(-130%);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(130%);
  }
}

@media (max-width: 480px) {
  body {
    padding: 0;
    place-items: stretch;
  }

  .phone {
    width: 100%;
    min-height: 100dvh;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }

  .card {
    min-height: 100dvh;
    border-radius: 0;
  }

  body.is-ready .card::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boot {
    display: none !important;
  }

  .phone,
  .card-body,
  .reveal,
  .btn-primary,
  .btn-ghost,
  .qr-wrap,
  .qr-note,
  .qr-title,
  .contact,
  .avatar::after,
  .card::after {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    clip-path: none !important;
    filter: none !important;
    animation: none !important;
  }

  .qr-zoom,
  .qr-zoom-card {
    transition: none !important;
  }

  .btn-primary::after {
    display: none !important;
  }
}
