:root {
  --magama-navy: #102d32;
  --magama-forest: #0f5b45;
  --magama-orange: #ff8a2b;
  --magama-pink: #f1517a;
  --magama-red: #ef5b60;
  --magama-blue: #39a8dc;
  --magama-green: #42b978;
  --magama-purple: #8957dd;
  --surface-light: rgba(255, 252, 244, 0.94);
  --surface-soft: rgba(255, 252, 244, 0.78);
  --surface-dark: rgba(12, 39, 42, 0.86);
  --text-strong: #15363a;
  --text-muted: #4e6763;
  --white: #ffffff;
  --radius-card: 28px;
  --radius-button: 999px;
  --shadow-card: 0 16px 38px rgba(14, 45, 39, 0.2);
  --shadow-elevated: 0 22px 62px rgba(10, 34, 37, 0.33);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-strong);
  background: var(--magama-navy);
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: var(--space-md);
  top: var(--space-md);
  z-index: 50;
  transform: translateY(-160%);
  border-radius: var(--radius-button);
  background: var(--white);
  color: var(--magama-navy);
  padding: 0.75rem 1rem;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.intro-shell {
  position: relative;
  min-height: 100vh;
  overflow-x: clip;
  isolation: isolate;
}

.scene-backdrop,
.scene-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.scene-backdrop {
  z-index: -3;
  background-image: url("./assets/magama-jungle.jpg");
  background-position: center;
  background-size: cover;
}

.intro-shell[data-step="1"] .scene-backdrop {
  background-image:
    linear-gradient(rgba(10, 40, 40, 0.24), rgba(10, 40, 40, 0.24)),
    url("./assets/magama-page1-background.jpg");
  background-position: center;
  background-size: cover;
}

.intro-shell[data-step="2"] .scene-backdrop {
  background-image:
    linear-gradient(rgba(8, 35, 37, 0.18), rgba(8, 35, 37, 0.42)),
    url("./assets/magama-page2-background.jpg");
  background-position: center;
  background-size: cover;
}

.scene-overlay {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 33, 35, 0.32), rgba(8, 33, 35, 0.72)),
    radial-gradient(circle at 50% 14%, rgba(255, 202, 104, 0.28), transparent 44%),
    linear-gradient(90deg, rgba(9, 33, 34, 0.35), transparent 42%, rgba(9, 33, 34, 0.32));
}

.intro-shell[data-step="1"] .scene-overlay {
  background:
    linear-gradient(180deg, rgba(255, 244, 214, 0.18), rgba(11, 46, 40, 0.64)),
    radial-gradient(circle at 50% 16%, rgba(255, 243, 202, 0.74), transparent 42%),
    linear-gradient(90deg, rgba(255, 159, 50, 0.12), transparent 42%, rgba(12, 50, 43, 0.22));
}

.intro-shell[data-step="2"] .scene-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 245, 189, 0.22), transparent 38%),
    linear-gradient(180deg, rgba(8, 31, 50, 0.12), rgba(4, 33, 28, 0.42));
}

.light-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.light-particles span {
  position: absolute;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: rgba(255, 219, 125, 0.8);
  box-shadow: 0 0 28px rgba(255, 176, 67, 0.9);
  opacity: 0.48;
  animation: drift 12s ease-in-out infinite;
}

.light-particles span:nth-child(1) {
  left: 12%;
  top: 74%;
}

.light-particles span:nth-child(2) {
  left: 88%;
  top: 34%;
  animation-delay: -3s;
}

.light-particles span:nth-child(3) {
  left: 67%;
  top: 82%;
  animation-delay: -6s;
}

.light-particles span:nth-child(4) {
  left: 31%;
  top: 26%;
  animation-delay: -9s;
}

.intro-step,
.main-site {
  min-height: 100vh;
  padding: clamp(1rem, 4vw, 2.5rem);
}

.intro-shell[data-step="1"] .hero-step {
  padding: 0;
}

.intro-shell[data-step="2"] .reflection-step {
  padding: 0;
}

.intro-shell[data-step="3"] .possibilities-step {
  padding: 0;
}

.intro-step {
  display: grid;
  align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.intro-step.is-active,
.main-site.is-active {
  opacity: 1;
  transform: translateY(0);
}

.step-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  place-items: start center;
  width: 100vw;
  min-height: 100svh;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100vw, 690px, calc(100svh * 0.6667));
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(255, 242, 203, 0.06), rgba(0, 33, 30, 0.2)),
    url("./assets/magama-page1-background.jpg") center / cover;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 23%, rgba(255, 248, 222, 0.72), transparent 30%),
    linear-gradient(180deg, transparent 0 56%, rgba(12, 39, 36, 0.1) 72%, rgba(4, 27, 24, 0.58) 100%);
  pointer-events: none;
}

.poster-stage {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.hero-brand {
  position: absolute;
  z-index: 3;
  top: 86px;
  left: 50%;
  width: 585px;
  transform: translateX(-50%);
  text-align: center;
  text-shadow: none;
}

.magama-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 5px 10px rgba(10, 31, 36, 0.16));
}

.brand-baseline {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--magama-navy);
}

.brand-baseline span {
  height: 3px;
  border-radius: var(--radius-button);
  background: linear-gradient(90deg, var(--magama-orange), var(--magama-pink));
}

.brand-baseline span:last-child {
  background: linear-gradient(90deg, var(--magama-green), var(--magama-blue));
}

.brand-baseline strong {
  font-size: 23px;
  font-weight: 950;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.hero-composition {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero-title {
  position: absolute;
  top: 268px;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: 900px;
  max-width: none;
  margin: 0 auto;
  color: var(--magama-navy);
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 150px;
  line-height: 0.84;
  text-align: center;
  transform: translateX(-50%);
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(4, 26, 33, 0.24);
}

.hero-title span {
  display: block;
  width: 100%;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-title span:nth-child(2) {
  color: var(--magama-orange);
  font-size: 1.22em;
  line-height: 0.88;
  margin-top: 20px;
}

.hero-title span:nth-child(3) {
  margin-top: 14px;
  font-size: 1.16em;
  line-height: 0.86;
}

.hero-guide {
  position: absolute;
  z-index: 2;
  left: -42px;
  top: 484px;
  width: 965px;
  max-width: none;
  height: auto;
  transform: rotate(-1deg);
  filter: drop-shadow(0 24px 28px rgba(6, 28, 26, 0.42));
  pointer-events: none;
  user-select: none;
}

.hero-cta-row {
  position: absolute;
  z-index: 3;
  left: 160px;
  top: 1327px;
  width: 704px;
  height: 138px;
}

.hero-cta {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 2px solid rgba(255, 239, 153, 0.88);
  padding-inline: 30px;
  background: linear-gradient(180deg, #ffb21e 0%, #ff8b00 48%, #ff6500 100%);
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 45px;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 18px 42px rgba(235, 89, 16, 0.58),
    0 0 34px rgba(255, 210, 87, 0.86),
    0 0 12px rgba(255, 247, 174, 0.92);
  text-shadow: 0 2px 0 rgba(135, 62, 0, 0.2);
  white-space: nowrap;
}

.reflection-inner {
  display: grid;
  place-items: start center;
  width: 100vw;
  min-height: 100svh;
}

.reflection-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100vw, 690px, calc(100svh * 0.6667));
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 236, 186, 0.08), rgba(3, 28, 28, 0.22)),
    url("./assets/magama-page2-background.jpg") center / cover;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.reflection-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 52% 16%, rgba(255, 246, 207, 0.62), transparent 31%),
    linear-gradient(180deg, rgba(5, 26, 46, 0.02) 0 28%, rgba(6, 33, 32, 0.02) 65%, rgba(4, 23, 23, 0.48) 100%);
  pointer-events: none;
}

.possibilities-inner {
  display: grid;
  place-items: start center;
  width: 100vw;
  min-height: 100svh;
  margin: 0;
}

.possibilities-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100vw, 690px, calc(100svh * 0.6667));
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: url("./assets/magama-page3-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.page3-stage {
  z-index: 1;
}

.reflection-hero {
  position: absolute;
  left: 52px;
  top: 34px;
  z-index: 4;
  width: 920px;
  text-align: center;
}

.reflection-title {
  max-width: none;
  margin: 0;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 0.76;
  text-transform: uppercase;
  text-shadow:
    0 5px 0 rgba(255, 255, 255, 0.36),
    0 9px 16px rgba(9, 28, 48, 0.3),
    0 0 18px rgba(255, 244, 170, 0.74);
}

.reflection-title span {
  display: block;
  white-space: nowrap;
}

.reflection-title span:nth-child(1) {
  color: var(--magama-navy);
  font-size: 124px;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.reflection-title span:nth-child(2) {
  margin-top: 13px;
  color: #ff4a16;
  font-size: 100px;
  -webkit-text-stroke: 1px rgba(109, 24, 18, 0.12);
}

.reflection-title span:nth-child(3) {
  margin-top: 10px;
  color: var(--magama-navy);
  font-size: 98px;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
}

.reflection-title span:nth-child(4) {
  margin-top: 10px;
  color: #267eda;
  font-size: 100px;
  -webkit-text-stroke: 1px rgba(10, 43, 82, 0.1);
}

.spark {
  position: absolute;
  z-index: 2;
  color: #ffcf18;
  font-size: 34px;
  line-height: 1;
  text-shadow:
    0 3px 0 rgba(114, 84, 0, 0.22),
    0 0 13px rgba(255, 238, 89, 0.86);
}

.spark-one {
  left: 194px;
  top: 49px;
}

.spark-two {
  right: 146px;
  top: 36px;
}

.spark-three {
  right: 8px;
  top: 184px;
  color: #48b83d;
  font-size: 30px;
}

.reflection-poster .reflection-list {
  position: absolute;
  left: 96px;
  top: 414px;
  z-index: 5;
  display: grid;
  gap: 10px;
  width: 724px;
}

.reflection-poster .reflection-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 166px;
  align-items: center;
  gap: 0;
  width: 724px;
  height: 176px;
  min-height: 0;
  padding: 15px 16px 14px 66px;
  border-width: 3px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(135deg, #fffdf6, #ffedc7);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.74),
    0 5px 0 color-mix(in srgb, var(--accent) 45%, #143332),
    0 12px 24px rgba(5, 31, 32, 0.24),
    0 0 14px color-mix(in srgb, var(--accent) 52%, transparent);
}

.reflection-poster .card-number {
  position: absolute;
  left: -12px;
  top: 17px;
  width: 82px;
  border: 4px solid rgba(255, 255, 255, 0.88);
  font-size: 51px;
  text-shadow: 0 3px 0 rgba(3, 21, 29, 0.23);
  box-shadow:
    inset 0 7px 14px rgba(255, 255, 255, 0.34),
    0 5px 0 rgba(10, 45, 47, 0.24),
    0 0 14px color-mix(in srgb, var(--accent) 48%, transparent);
}

.reflection-illustration {
  width: 138px;
  max-height: 116px;
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(40, 30, 12, 0.22));
}

.reflection-card[data-card-number="2"] .reflection-illustration,
.reflection-card[data-card-number="3"] .reflection-illustration,
.reflection-card[data-card-number="4"] .reflection-illustration,
.reflection-card[data-card-number="5"] .reflection-illustration {
  width: 146px;
}

.reflection-poster .reflection-copy {
  align-self: center;
  min-width: 0;
  padding-right: 12px;
}

.reflection-poster .reflection-copy h2 {
  margin: 0 0 7px;
  color: var(--accent);
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 31px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72);
}

.reflection-poster .reflection-copy p {
  margin: 0;
  color: #10252e;
  font-size: 18.8px;
  font-weight: 800;
  line-height: 1.1;
}

.reflection-poster .answer-group {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 0;
}

.reflection-poster .answer-button {
  min-height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 23px;
  color: var(--white);
  font-size: 24px;
  font-weight: 950;
  text-shadow: 0 2px 0 rgba(45, 70, 12, 0.25);
  box-shadow:
    inset 0 7px 12px rgba(255, 255, 255, 0.32),
    inset 0 -7px 11px rgba(36, 41, 9, 0.18),
    0 5px 0 rgba(30, 28, 10, 0.26),
    0 8px 14px rgba(5, 29, 31, 0.22);
}

.reflection-poster .answer-button[data-answer-value="yes"] {
  background: linear-gradient(180deg, #b5d85c 0%, #6ea92e 45%, #366d1d 100%);
}

.reflection-poster .answer-button[data-answer-value="no"] {
  background: linear-gradient(180deg, #ffae27 0%, #ff6714 48%, #d73710 100%);
}

.reflection-poster .answer-button::before {
  display: none;
}

.reflection-poster .answer-button[aria-pressed="true"] {
  border-color: #ffffff;
  box-shadow:
    inset 0 0 0 5px rgba(255, 255, 255, 0.35),
    inset 0 7px 12px rgba(255, 255, 255, 0.32),
    0 0 0 5px color-mix(in srgb, var(--accent) 48%, transparent),
    0 8px 18px rgba(5, 29, 31, 0.26);
}

.reflection-poster .answer-button[aria-pressed="true"]::after {
  content: "✓";
  margin-left: 8px;
  font-size: 23px;
}

.reflection-poster[data-validation="show"] .reflection-card[data-missing="true"] {
  animation: missing-answer-pulse 0.48s ease-in-out 2;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.82),
    0 5px 0 #be2c24,
    0 12px 24px rgba(5, 31, 32, 0.24),
    0 0 24px rgba(255, 76, 31, 0.8);
}

.reflection-cta[data-ready="false"] {
  cursor: not-allowed;
  filter: saturate(0.9) brightness(0.97);
}

.reflection-poster[data-ready="true"] .reflection-cta {
  filter: saturate(1.08) brightness(1.04);
}

.possibility-hotspot,
.page3-enter {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.possibility-hotspot {
  top: 684px;
  height: 546px;
  border-radius: 42px;
}

.possibility-hotspot-parler {
  left: 22px;
  width: 188px;
}

.possibility-hotspot-partager {
  left: 216px;
  width: 194px;
}

.possibility-hotspot-feter {
  left: 417px;
  width: 188px;
}

.possibility-hotspot-vivre {
  left: 611px;
  width: 188px;
}

.possibility-hotspot-decouvrir {
  left: 805px;
  width: 197px;
}

.page3-enter {
  left: 92px;
  top: 1260px;
  width: 846px;
  height: 148px;
  border-radius: 999px;
}

.possibility-hotspot:hover,
.page3-enter:hover {
  background: rgba(255, 255, 255, 0.06);
}

.possibility-hotspot:focus-visible,
.page3-enter:focus-visible {
  outline: 6px solid rgba(255, 239, 153, 0.95);
  outline-offset: -8px;
  box-shadow: 0 0 32px rgba(255, 179, 44, 0.74);
}

@keyframes missing-answer-pulse {
  0%,
  100% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-8px);
  }

  70% {
    transform: translateX(8px);
  }
}

.page2-mascot {
  position: absolute;
  z-index: 6;
  left: 16px;
  top: 1247px;
  width: 222px;
  height: auto;
  filter: drop-shadow(0 16px 18px rgba(45, 3, 49, 0.35));
  pointer-events: none;
  user-select: none;
}

.reflection-cta-row {
  position: absolute;
  z-index: 7;
  left: 255px;
  top: 1362px;
  width: 558px;
  height: 116px;
}

.reflection-cta {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 2px solid rgba(255, 239, 153, 0.9);
  border-radius: 999px;
  background: linear-gradient(100deg, #ff9a00 0%, #ff6b00 44%, #ec207d 100%);
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 59px;
  line-height: 1;
  text-shadow:
    0 5px 0 rgba(94, 42, 0, 0.25),
    0 0 10px rgba(255, 255, 255, 0.35);
  box-shadow:
    inset 0 6px 0 rgba(255, 255, 255, 0.2),
    0 16px 42px rgba(228, 43, 93, 0.48),
    0 0 34px rgba(255, 166, 28, 0.84);
}

.brand-kicker {
  margin: 0 0 var(--space-sm);
  color: #ffe3a3;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13ch;
  margin-bottom: var(--space-md);
  font-size: clamp(3rem, 14vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.step-heading {
  max-width: 780px;
  margin-bottom: var(--space-xl);
  color: var(--white);
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.38);
}

.step-heading h1 {
  max-width: 15ch;
  font-size: clamp(2.3rem, 9vw, 5.7rem);
}

.step-heading p {
  margin-bottom: 0;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 750;
}

.possibilities-heading {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.guide-badge {
  display: grid;
  flex: 0 0 auto;
  width: clamp(64px, 16vw, 104px);
  aspect-ratio: 1;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.72);
  border-radius: 36% 46% 42% 50%;
  background:
    radial-gradient(circle at 52% 38%, #ffd3a7 0 31%, transparent 32%),
    radial-gradient(circle at 50% 78%, #ff8a2b 0 28%, transparent 29%),
    linear-gradient(135deg, rgba(241, 81, 122, 0.92), rgba(255, 184, 77, 0.92));
  box-shadow: var(--shadow-elevated);
}

.guide-face {
  width: 54%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 44%, var(--magama-navy) 0 5%, transparent 6%),
    radial-gradient(circle at 65% 44%, var(--magama-navy) 0 5%, transparent 6%),
    radial-gradient(ellipse at 50% 66%, transparent 0 18%, var(--magama-navy) 19% 23%, transparent 24%),
    #ffcf9d;
  box-shadow: inset 0 -7px 0 rgba(223, 122, 75, 0.22);
}

.reflection-list,
.universe-grid {
  display: grid;
  gap: var(--space-md);
}

.reflection-card,
.universe-card {
  --accent: var(--magama-orange);
  display: grid;
  gap: var(--space-md);
  border: 2px solid color-mix(in srgb, var(--accent) 58%, white);
  border-radius: var(--radius-card);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), var(--surface-light)),
    var(--surface-light);
  box-shadow: var(--shadow-card);
}

.reflection-card {
  grid-template-columns: auto 1fr;
  padding: var(--space-md);
}

.card-number,
.icon-bubble {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  aspect-ratio: 1;
}

.card-number {
  width: 2.65rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 950;
  box-shadow: 0 9px 18px color-mix(in srgb, var(--accent) 36%, transparent);
}

.icon-bubble {
  width: 4.75rem;
  border-radius: 30% 45% 34% 48%;
  color: var(--accent);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.9), transparent 29%),
    color-mix(in srgb, var(--accent) 16%, white);
}

.icon-bubble svg {
  width: 52%;
  height: 52%;
  stroke-width: 2.5;
}

.reflection-copy {
  min-width: 0;
}

.reflection-copy h2,
.universe-card h2 {
  margin-bottom: 0.35rem;
  color: var(--text-strong);
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.reflection-copy p,
.universe-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.42;
}

.answer-group {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.answer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 2px solid color-mix(in srgb, var(--accent) 34%, #ffffff);
  border-radius: var(--radius-button);
  background: #ffffff;
  color: var(--text-strong);
  font-weight: 950;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.answer-button::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.answer-button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: 0 8px 16px color-mix(in srgb, var(--accent) 20%, transparent);
}

.answer-button[aria-pressed="true"] {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, white);
  box-shadow:
    inset 0 0 0 2px #ffffff,
    0 10px 22px color-mix(in srgb, var(--accent) 24%, transparent);
}

.answer-button[aria-pressed="true"]::before {
  content: "✓";
  width: 1rem;
  height: 1rem;
  border: 0;
  color: var(--accent);
  font-size: 1rem;
  line-height: 1;
}

.primary-cta,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: var(--radius-button);
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, var(--magama-orange), var(--magama-pink));
  color: var(--white);
  box-shadow:
    0 14px 30px rgba(241, 81, 122, 0.34),
    0 0 34px rgba(255, 138, 43, 0.22);
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    filter 170ms ease;
}

.primary-cta:hover,
.secondary-link:hover {
  transform: translateY(-2px) scale(1.01);
  filter: saturate(1.08);
  box-shadow:
    0 18px 38px rgba(241, 81, 122, 0.4),
    0 0 42px rgba(255, 138, 43, 0.28);
}

.primary-cta:focus-visible,
.secondary-link:focus-visible,
.answer-button:focus-visible,
.site-topbar a:focus-visible {
  outline: 4px solid #ffe3a3;
  outline-offset: 3px;
}

.cta-row {
  display: flex;
  justify-content: center;
  margin-top: var(--space-xl);
}

.cta-row .primary-cta {
  width: min(100%, 360px);
}

.universe-grid {
  grid-template-columns: 1fr;
}

.universe-card {
  padding: var(--space-lg);
  min-height: 164px;
  align-content: start;
  transition:
    transform 170ms ease,
    box-shadow 170ms ease;
}

.universe-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-elevated);
}

.universe-card .icon-bubble {
  margin-bottom: var(--space-sm);
}

.main-site {
  display: grid;
  place-items: start center;
  width: 100%;
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
}

.site-poster {
  --site-scale: 1;
  position: relative;
  width: min(100vw, calc(100svh * 1.5));
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: url("./assets/magama-site-home-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  isolation: isolate;
}

.site-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1536px;
  height: 1024px;
  transform: scale(var(--site-scale));
  transform-origin: top left;
}

.site-hotspot,
.site-search-hotspot {
  position: absolute;
  z-index: 4;
  display: block;
}

.site-home-topbar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 8;
  display: grid;
  grid-template-columns: 260px 1fr 250px;
  align-items: center;
  gap: 18px;
  width: 1536px;
  height: 88px;
  padding: 0 34px;
  background: linear-gradient(180deg, rgba(1, 8, 18, 0.96), rgba(3, 12, 24, 0.9));
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.34),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.site-home-logo,
.site-home-topbar a {
  color: var(--white);
  text-decoration: none;
}

.site-home-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 48px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.site-home-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.site-home-links a {
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 18px;
  font-weight: 950;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-home-links a:hover,
.site-home-links a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd36f;
}

.site-home-reserve {
  justify-self: end;
  min-width: 216px;
  border-radius: 999px;
  padding: 15px 22px;
  background: linear-gradient(100deg, #ff9300, #ec217d);
  box-shadow:
    0 0 26px rgba(255, 128, 26, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  font-size: 18px;
  font-weight: 950;
  text-align: center;
}

.site-hotspot {
  border-radius: 16px;
}

.site-logo {
  left: 30px;
  top: 18px;
  width: 230px;
  height: 54px;
}

.site-nav {
  top: 20px;
  height: 52px;
}

.site-nav-accueil {
  left: 306px;
  width: 78px;
}

.site-nav-experiences {
  left: 407px;
  width: 124px;
}

.site-nav-evenements {
  left: 548px;
  width: 124px;
}

.site-nav-ateliers {
  left: 700px;
  width: 278px;
}

.site-nav-contenus {
  left: 982px;
  width: 100px;
}

.site-nav-contact {
  left: 1095px;
  width: 88px;
}

.site-reserve {
  left: 1227px;
  top: 16px;
  width: 280px;
  height: 55px;
  border-radius: 999px;
}

.site-search-hotspot {
  left: 98px;
  top: 453px;
  width: 420px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  padding: 0 22px 0 60px;
  outline: none;
}

.site-search-hotspot::placeholder {
  color: transparent;
}

.site-card {
  top: 518px;
  height: 264px;
  border-radius: 22px;
}

.site-card-parler {
  left: 73px;
  width: 260px;
}

.site-card-partager {
  left: 350px;
  width: 260px;
}

.site-card-feter {
  left: 627px;
  width: 260px;
}

.site-card-vivre {
  left: 903px;
  width: 260px;
}

.site-card-decouvrir {
  left: 1180px;
  width: 260px;
}

.site-see-all {
  left: 1325px;
  top: 806px;
  width: 118px;
  height: 38px;
  border-radius: 999px;
}

.site-feature {
  top: 842px;
  width: 326px;
  height: 162px;
  border-radius: 14px;
}

.site-feature-1 {
  left: 97px;
}

.site-feature-2 {
  left: 440px;
}

.site-feature-3 {
  left: 783px;
}

.site-feature-4 {
  left: 1121px;
}

.site-hotspot:hover,
.site-search-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.site-hotspot:focus-visible,
.site-search-hotspot:focus-visible {
  outline: 4px solid rgba(255, 239, 153, 0.95);
  outline-offset: -4px;
  box-shadow: 0 0 28px rgba(255, 128, 26, 0.68);
}

.main-site[data-view="app"] {
  align-items: stretch;
  overflow: visible;
  background:
    linear-gradient(180deg, rgba(0, 8, 18, 0.55), rgba(0, 25, 22, 0.72)),
    url("./assets/magama-site-home-model.png") center / cover fixed;
}

.site-app {
  width: 100%;
  min-height: 100svh;
  color: var(--white);
}

.main-site[data-route="parler"] .app-topbar,
.main-site[data-route="partager"] .app-topbar,
.main-site[data-route="feter"] .app-topbar,
.main-site[data-route="vivre"] .app-topbar,
.main-site[data-route="decouvrir"] .app-topbar {
  display: none;
}

.main-site[data-route="parler"] .site-page,
.main-site[data-route="partager"] .site-page,
.main-site[data-route="feter"] .site-page,
.main-site[data-route="vivre"] .site-page,
.main-site[data-route="decouvrir"] .site-page {
  width: min(100%, 1024px);
  padding: 0;
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 10, 22, 0.88);
  padding: 0.9rem clamp(1rem, 4vw, 2.25rem);
  backdrop-filter: blur(16px);
}

.app-logo {
  border: 0;
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.app-topbar nav,
.app-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
}

.app-topbar a {
  border-radius: 999px;
  color: var(--white);
  font-weight: 850;
  text-decoration: none;
}

.app-topbar nav a {
  padding: 0.55rem 0.7rem;
}

.app-reserve,
.app-path,
.app-cart {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
}

.app-reserve {
  background: linear-gradient(100deg, #ff9300, #ec217d);
  box-shadow: 0 0 22px rgba(255, 128, 26, 0.34);
}

.app-path {
  border: 1px solid rgba(131, 201, 40, 0.5);
  background: rgba(131, 201, 40, 0.12);
}

.app-cart {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

#cart-count {
  min-width: 1.4rem;
  border-radius: 999px;
  background: #ff8a00;
  color: var(--white);
  font-size: 0.85rem;
  text-align: center;
}

.site-page {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2.8rem);
}

.route-hero {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.route-kicker,
.offer-tag {
  color: #ffd36f;
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.route-hero h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: clamp(2.4rem, 10vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.route-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.45;
}

.route-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.route-search,
.route-filter,
.form-field input,
.form-field select,
.form-field textarea {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(3, 15, 28, 0.76);
  color: var(--white);
  font: inherit;
}

.route-search {
  width: min(100%, 390px);
  padding: 0 1rem;
}

.route-filter {
  padding: 0 0.9rem;
}

.parler-model-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.parler-model-poster {
  --parler-model-scale: 1;
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 941 / 1672;
  overflow: hidden;
  border-radius: 18px;
  background: url("./assets/parler-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.parler-model-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 941px;
  height: 1672px;
  transform: scale(var(--parler-model-scale));
  transform-origin: top left;
}

.parler-model-topbar {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 5;
  display: grid;
  grid-template-columns: 172px 1fr 118px;
  align-items: center;
  gap: 12px;
  width: 913px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(2, 8, 20, 0.93);
  padding: 0 18px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(139, 53, 255, 0.16);
}

.parler-model-topbar,
.parler-model-topbar a {
  color: var(--white);
  text-decoration: none;
}

.parler-model-topbar-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.parler-model-topbar div {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.parler-model-topbar div a {
  border-radius: 999px;
  padding: 9px 8px;
  font-size: 13.5px;
  font-weight: 900;
}

.parler-model-topbar div a:first-child {
  color: #ff4f85;
  box-shadow: inset 0 -2px 0 #ff4f85;
}

.parler-model-topbar-reserve {
  justify-self: end;
  min-width: 98px;
  border-radius: 999px;
  background: linear-gradient(100deg, #ff8a00, #ec217d);
  padding: 12px 14px;
  box-shadow: 0 0 20px rgba(236, 33, 125, 0.48);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.parler-model-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.parler-model-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.parler-model-hotspot:focus-visible {
  outline: 5px solid rgba(255, 239, 153, 0.95);
  outline-offset: -6px;
  box-shadow: 0 0 28px rgba(255, 128, 26, 0.72);
}

.parler-model-logo {
  left: 18px;
  top: 18px;
  width: 174px;
  height: 54px;
}

.parler-model-nav-accueil {
  left: 207px;
  top: 32px;
  width: 70px;
  height: 34px;
}

.parler-model-nav-parler {
  left: 290px;
  top: 32px;
  width: 100px;
  height: 38px;
}

.parler-model-nav-feter {
  left: 398px;
  top: 32px;
  width: 104px;
  height: 38px;
}

.parler-model-nav-vivre {
  left: 514px;
  top: 24px;
  width: 128px;
  height: 54px;
}

.parler-model-nav-decouvrir {
  left: 650px;
  top: 31px;
  width: 94px;
  height: 38px;
}

.parler-model-reserve {
  left: 816px;
  top: 24px;
  width: 106px;
  height: 51px;
  border-radius: 999px;
}

.parler-model-session-card {
  left: 28px;
  top: 844px;
  width: 430px;
  height: 526px;
}

.parler-model-session-cta {
  left: 55px;
  top: 1284px;
  width: 374px;
  height: 72px;
  border-radius: 999px;
}

.parler-model-pack-card {
  left: 476px;
  top: 844px;
  width: 440px;
  height: 526px;
}

.parler-model-pack-cta {
  left: 498px;
  top: 1284px;
  width: 388px;
  height: 72px;
  border-radius: 999px;
}

.parler-model-choice-cta {
  left: 322px;
  top: 1536px;
  width: 252px;
  height: 68px;
  border-radius: 999px;
}

.partager-model-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.partager-model-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  border-radius: 18px;
  background: url("./assets/partager-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.partager-model-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.partager-model-topbar {
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 5;
  display: grid;
  grid-template-columns: 190px 1fr 128px;
  align-items: center;
  gap: 12px;
  width: 1004px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(2, 8, 20, 0.94);
  padding: 0 20px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(34, 168, 242, 0.14);
}

.partager-model-topbar,
.partager-model-topbar a {
  color: var(--white);
  text-decoration: none;
}

.partager-model-topbar-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 33px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.partager-model-topbar div {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.partager-model-topbar div a {
  border-radius: 999px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 900;
}

.partager-model-topbar div a:nth-child(2) {
  color: #54d2ff;
  box-shadow: inset 0 -2px 0 #54d2ff;
}

.partager-model-topbar-reserve {
  justify-self: end;
  min-width: 112px;
  border-radius: 999px;
  background: linear-gradient(100deg, #ff8a00, #ec217d);
  padding: 12px 14px;
  box-shadow: 0 0 20px rgba(236, 33, 125, 0.48);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.partager-model-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.partager-model-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.partager-model-hotspot:focus-visible {
  outline: 5px solid rgba(255, 239, 153, 0.95);
  outline-offset: -6px;
  box-shadow: 0 0 28px rgba(34, 168, 242, 0.72);
}

.partager-model-animation-card,
.partager-model-intervention-card,
.partager-model-custom-card {
  top: 820px;
  height: 420px;
}

.partager-model-animation-card {
  left: 32px;
  width: 303px;
}

.partager-model-intervention-card {
  left: 351px;
  width: 304px;
}

.partager-model-custom-card {
  left: 668px;
  width: 325px;
}

.partager-model-animation-cta,
.partager-model-intervention-cta,
.partager-model-custom-cta,
.partager-model-start-cta {
  border-radius: 999px;
}

.partager-model-animation-cta {
  left: 50px;
  top: 1169px;
  width: 270px;
  height: 58px;
}

.partager-model-intervention-cta {
  left: 366px;
  top: 1169px;
  width: 272px;
  height: 58px;
}

.partager-model-custom-cta {
  left: 690px;
  top: 1169px;
  width: 280px;
  height: 58px;
}

.partager-model-start-cta {
  left: 670px;
  top: 1362px;
  width: 276px;
  height: 78px;
}

.feter-model-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.feter-model-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  border-radius: 18px;
  background: url("./assets/feter-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.feter-model-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.feter-model-topbar {
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 5;
  display: grid;
  grid-template-columns: 190px 1fr 128px;
  align-items: center;
  gap: 12px;
  width: 1004px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(2, 8, 20, 0.94);
  padding: 0 20px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(255, 138, 0, 0.18);
}

.feter-model-topbar,
.feter-model-topbar a {
  color: var(--white);
  text-decoration: none;
}

.feter-model-topbar-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 33px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.feter-model-topbar div {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.feter-model-topbar div a {
  border-radius: 999px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 900;
}

.feter-model-topbar div a:nth-child(3) {
  color: #ffb000;
  box-shadow: inset 0 -2px 0 #ffb000;
}

.feter-model-topbar-reserve {
  justify-self: end;
  min-width: 112px;
  border-radius: 999px;
  background: linear-gradient(100deg, #ff8a00, #ec217d);
  padding: 12px 14px;
  box-shadow: 0 0 20px rgba(236, 33, 125, 0.48);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.feter-model-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.feter-model-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.feter-model-hotspot:focus-visible {
  outline: 5px solid rgba(255, 239, 153, 0.95);
  outline-offset: -6px;
  box-shadow: 0 0 28px rgba(255, 138, 0, 0.72);
}

.feter-model-celebration-card,
.feter-model-surprise-card,
.feter-model-custom-card {
  top: 839px;
  height: 464px;
}

.feter-model-celebration-card {
  left: 31px;
  width: 298px;
}

.feter-model-surprise-card {
  left: 344px;
  width: 299px;
}

.feter-model-custom-card {
  left: 662px;
  width: 330px;
}

.feter-model-celebration-cta,
.feter-model-surprise-cta,
.feter-model-custom-cta,
.feter-model-start-cta {
  border-radius: 999px;
}

.feter-model-celebration-cta {
  left: 43px;
  top: 1234px;
  width: 273px;
  height: 65px;
}

.feter-model-surprise-cta {
  left: 357px;
  top: 1234px;
  width: 273px;
  height: 65px;
}

.feter-model-custom-cta {
  left: 675px;
  top: 1234px;
  width: 304px;
  height: 65px;
}

.feter-model-start-cta {
  left: 702px;
  top: 1370px;
  width: 276px;
  height: 84px;
}

.vivre-model-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.vivre-model-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  border-radius: 18px;
  background: url("./assets/vivre-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.vivre-model-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.vivre-model-topbar {
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 5;
  display: grid;
  grid-template-columns: 190px 1fr 128px;
  align-items: center;
  gap: 12px;
  width: 1004px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(2, 8, 20, 0.94);
  padding: 0 20px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(131, 201, 40, 0.18);
}

.vivre-model-topbar,
.vivre-model-topbar a {
  color: var(--white);
  text-decoration: none;
}

.vivre-model-topbar-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 33px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.vivre-model-topbar div {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.vivre-model-topbar div a {
  border-radius: 999px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 900;
}

.vivre-model-topbar div a:nth-child(4) {
  color: #b6ff13;
  box-shadow: inset 0 -2px 0 #b6ff13;
}

.vivre-model-topbar-reserve {
  justify-self: end;
  min-width: 112px;
  border-radius: 999px;
  background: linear-gradient(100deg, #d5ff00, #00d084);
  padding: 12px 14px;
  box-shadow: 0 0 20px rgba(182, 255, 19, 0.44);
  color: #071308;
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.vivre-model-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.vivre-model-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.vivre-model-hotspot:focus-visible {
  outline: 5px solid rgba(224, 255, 64, 0.95);
  outline-offset: -6px;
  box-shadow: 0 0 28px rgba(131, 201, 40, 0.72);
}

.vivre-model-experience-card,
.vivre-model-sortie-card,
.vivre-model-custom-card {
  top: 883px;
  height: 400px;
}

.vivre-model-experience-card {
  left: 35px;
  width: 312px;
}

.vivre-model-sortie-card {
  left: 358px;
  width: 303px;
}

.vivre-model-custom-card {
  left: 671px;
  width: 322px;
}

.vivre-model-experience-cta,
.vivre-model-sortie-cta,
.vivre-model-custom-cta,
.vivre-model-start-cta {
  border-radius: 999px;
}

.vivre-model-experience-cta {
  left: 57px;
  top: 1217px;
  width: 268px;
  height: 50px;
}

.vivre-model-sortie-cta {
  left: 376px;
  top: 1217px;
  width: 266px;
  height: 50px;
}

.vivre-model-custom-cta {
  left: 690px;
  top: 1217px;
  width: 281px;
  height: 50px;
}

.vivre-model-start-cta {
  left: 286px;
  top: 1445px;
  width: 424px;
  height: 76px;
}

.decouvrir-model-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.decouvrir-model-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100%, 780px);
  aspect-ratio: 1024 / 1536;
  overflow: hidden;
  border-radius: 18px;
  background: url("./assets/decouvrir-model.png") center / 100% 100% no-repeat;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.decouvrir-model-stage {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.decouvrir-model-topbar {
  position: absolute;
  left: 10px;
  top: 14px;
  z-index: 5;
  display: grid;
  grid-template-columns: 190px 1fr 128px;
  align-items: center;
  gap: 12px;
  width: 1004px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(2, 8, 20, 0.94);
  padding: 0 20px;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.36),
    inset 0 0 24px rgba(155, 75, 242, 0.2);
}

.decouvrir-model-topbar,
.decouvrir-model-topbar a {
  color: var(--white);
  text-decoration: none;
}

.decouvrir-model-topbar-logo {
  background: linear-gradient(90deg, #ff3b37, #ffb000, #54c94d, #0cb4ff, #8a35ff);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 33px;
  letter-spacing: 0;
  -webkit-background-clip: text;
}

.decouvrir-model-topbar div {
  display: flex;
  justify-content: center;
  gap: 9px;
}

.decouvrir-model-topbar div a {
  border-radius: 999px;
  padding: 8px 8px;
  font-size: 14px;
  font-weight: 900;
}

.decouvrir-model-topbar div a:nth-child(5) {
  color: #f15cff;
  box-shadow: inset 0 -2px 0 #f15cff;
}

.decouvrir-model-topbar-reserve {
  justify-self: end;
  min-width: 112px;
  border-radius: 999px;
  background: linear-gradient(100deg, #6b1cff, #ec5cff);
  padding: 12px 14px;
  box-shadow: 0 0 20px rgba(236, 92, 255, 0.48);
  font-size: 14px;
  font-weight: 950;
  text-align: center;
}

.decouvrir-model-hotspot {
  position: absolute;
  z-index: 3;
  display: block;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}

.decouvrir-model-hotspot:hover {
  background: rgba(255, 255, 255, 0.06);
}

.decouvrir-model-hotspot:focus-visible {
  outline: 5px solid rgba(244, 156, 255, 0.95);
  outline-offset: -6px;
  box-shadow: 0 0 28px rgba(155, 75, 242, 0.72);
}

.decouvrir-model-listen-card,
.decouvrir-model-watch-card,
.decouvrir-model-explore-card {
  top: 855px;
  height: 416px;
}

.decouvrir-model-listen-card {
  left: 28px;
  width: 309px;
}

.decouvrir-model-watch-card {
  left: 356px;
  width: 302px;
}

.decouvrir-model-explore-card {
  left: 681px;
  width: 315px;
}

.decouvrir-model-listen-cta,
.decouvrir-model-watch-cta,
.decouvrir-model-explore-cta,
.decouvrir-model-start-cta {
  border-radius: 999px;
}

.decouvrir-model-listen-cta {
  left: 49px;
  top: 1207px;
  width: 267px;
  height: 50px;
}

.decouvrir-model-watch-cta {
  left: 376px;
  top: 1207px;
  width: 263px;
  height: 50px;
}

.decouvrir-model-explore-cta {
  left: 704px;
  top: 1207px;
  width: 268px;
  height: 50px;
}

.decouvrir-model-start-cta {
  left: 376px;
  top: 1451px;
  width: 390px;
  height: 75px;
}

.parler-poster-shell {
  display: grid;
  justify-items: center;
  width: 100%;
}

.parler-poster {
  --poster-scale: 1;
  position: relative;
  width: min(100%, 760px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  border: 1px solid rgba(255, 122, 59, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(2, 8, 18, 0.02), rgba(2, 8, 18, 0.44)),
    url("./assets/magama-page1-background.jpg") center / cover;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.parler-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 21%, rgba(255, 196, 74, 0.66), transparent 23%),
    radial-gradient(circle at 18% 62%, rgba(236, 33, 125, 0.2), transparent 23%),
    radial-gradient(circle at 82% 70%, rgba(155, 75, 242, 0.22), transparent 24%),
    linear-gradient(90deg, rgba(1, 8, 16, 0.62), transparent 38%, rgba(1, 8, 16, 0.62));
  pointer-events: none;
}

.parler-stage {
  position: absolute;
  inset: 0 auto auto 0;
  z-index: 1;
  width: 1024px;
  height: 1536px;
  transform: scale(var(--poster-scale));
  transform-origin: top left;
}

.parler-stage-hero {
  position: absolute;
  left: 72px;
  top: 72px;
  width: 880px;
  text-align: center;
}

.parler-stage-hero span {
  color: #ffd36f;
  font-size: 24px;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.44);
}

.parler-stage-hero h2 {
  margin: 12px 0 0;
  background: linear-gradient(100deg, #ff2b8a 0%, #ff3858 45%, #ff7a00 100%);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 156px;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(255, 235, 184, 0.1),
    0 20px 44px rgba(255, 58, 80, 0.34);
  -webkit-background-clip: text;
}

.parler-stage-hero p {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 44px;
  font-weight: 950;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.56);
}

.parler-stage-intro,
.parler-stage-info,
.parler-stage-offer,
.parler-stage-choice {
  position: absolute;
  overflow: hidden;
  border: 3px solid color-mix(in srgb, var(--accent, #f1517a) 66%, rgba(255, 255, 255, 0.18));
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #f1517a) 18%, transparent), rgba(2, 10, 23, 0.92)),
    rgba(3, 11, 26, 0.94);
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.3),
    0 0 24px color-mix(in srgb, var(--accent, #f1517a) 32%, transparent),
    inset 0 0 26px rgba(255, 255, 255, 0.05);
}

.parler-stage-intro {
  left: 32px;
  top: 392px;
  width: 622px;
  height: 340px;
}

.parler-stage-guide {
  position: absolute;
  left: -78px;
  bottom: -136px;
  width: 390px;
  max-width: none;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.46));
  transform: rotate(-2deg);
  pointer-events: none;
  user-select: none;
}

.parler-stage-bubble {
  position: absolute;
  left: 342px;
  top: 40px;
  color: #ff3d90;
}

.parler-stage-bubble .icon-bubble {
  width: 76px;
  border-radius: 50%;
  background: rgba(236, 33, 125, 0.16);
  box-shadow: 0 0 22px rgba(236, 33, 125, 0.5);
}

.parler-stage-copy {
  position: absolute;
  left: 350px;
  top: 124px;
  display: grid;
  gap: 24px;
  width: 238px;
}

.parler-stage-copy p,
.parler-stage-info p,
.parler-stage-offer p,
.parler-stage-choice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.34;
}

.parler-stage-info {
  right: 32px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: start;
  width: 334px;
  height: 156px;
  padding: 28px 24px;
}

.parler-stage-who {
  top: 392px;
  --accent: #ffb000;
}

.parler-stage-how {
  top: 574px;
  --accent: #b144ff;
}

.parler-stage-info .icon-bubble {
  width: 56px;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.parler-stage-info h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 31px;
  line-height: 1;
}

.parler-stage-info p {
  font-size: 18px;
  line-height: 1.27;
}

.parler-stage-title {
  position: absolute;
  left: 216px;
  top: 776px;
  display: grid;
  grid-template-columns: 42px auto 42px;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-align: center;
}

.parler-stage-title h3 {
  margin: 0;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.5);
}

.parler-stage-title span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff7a35, #ff3868);
  box-shadow: 0 0 14px rgba(255, 77, 82, 0.65);
}

.parler-stage-offer {
  top: 846px;
  width: 460px;
  height: 456px;
  padding: 34px 30px;
}

.parler-stage-session {
  left: 32px;
}

.parler-stage-pack {
  right: 32px;
  --accent: #a943ff;
}

.parler-stage-offer .icon-bubble {
  position: absolute;
  left: 34px;
  top: 38px;
  width: 88px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.08));
}

.parler-stage-offer > span,
.parler-stage-offer h3,
.parler-stage-offer strong,
.parler-stage-offer p,
.parler-stage-meta,
.parler-stage-offer button {
  position: relative;
  z-index: 2;
}

.parler-stage-offer > span {
  display: block;
  margin-left: 126px;
  color: #ffd36f;
  font-size: 20px;
  font-weight: 950;
}

.parler-stage-offer h3 {
  margin: 0 0 6px 126px;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.parler-stage-offer strong {
  display: block;
  margin-left: 126px;
  color: color-mix(in srgb, var(--accent) 74%, white);
  font-size: 22px;
}

.parler-stage-offer p {
  width: 290px;
  margin: 42px auto 0;
  font-size: 23px;
  text-align: center;
}

.parler-stage-meta {
  display: grid;
  gap: 12px;
  margin: 28px 0 0 210px;
}

.parler-stage-meta span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.24;
}

.parler-stage-offer button,
.parler-stage-choice button {
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  text-shadow: 0 2px 0 rgba(70, 20, 8, 0.24);
}

.parler-stage-offer button {
  position: absolute;
  left: 34px;
  bottom: 30px;
  width: 392px;
  height: 72px;
  background: linear-gradient(100deg, #ff8a00, #ec217d);
  box-shadow:
    0 0 24px rgba(236, 33, 125, 0.52),
    inset 0 2px 0 rgba(255, 255, 255, 0.24);
  font-size: 25px;
}

.parler-stage-pack button {
  background: linear-gradient(100deg, #7837ff, #d528ff);
}

.parler-stage-choice {
  left: 32px;
  top: 1328px;
  display: grid;
  grid-template-columns: 210px 1fr 230px;
  align-items: center;
  gap: 22px;
  width: 960px;
  height: 170px;
  padding: 18px 28px;
  --accent: #8a35ff;
}

.parler-stage-choice h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 31px;
  line-height: 1;
}

.parler-stage-choice p {
  font-size: 23px;
}

.parler-stage-choice button {
  width: 260px;
  height: 56px;
  margin-top: 16px;
  border: 2px solid rgba(255, 202, 115, 0.8);
  background: rgba(255, 122, 0, 0.08);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.36);
  font-size: 23px;
}

.parler-stage-mascot,
.parler-stage-guide-small {
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.parler-stage-mascot {
  width: 190px;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.36));
}

.parler-stage-guide-small {
  width: 215px;
  transform: rotate(-9deg) scale(1.36);
  transform-origin: center bottom;
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.4));
}

.parler-page {
  display: grid;
  gap: clamp(1.1rem, 3vw, 1.8rem);
  padding-bottom: 1rem;
}

.parler-hero {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 138, 43, 0.34);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.08), rgba(4, 12, 24, 0.36)),
    url("./assets/magama-page1-background.jpg") center 46% / cover;
  padding: clamp(2.2rem, 7vw, 4.8rem) 1rem clamp(2rem, 5vw, 3.4rem);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.3),
    inset 0 -80px 90px rgba(4, 10, 22, 0.45);
  text-align: center;
}

.parler-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 70%, rgba(255, 177, 38, 0.56), transparent 18%),
    linear-gradient(90deg, rgba(2, 7, 17, 0.62), transparent 42%, rgba(2, 7, 17, 0.62));
  pointer-events: none;
}

.parler-hero > * {
  position: relative;
  z-index: 1;
}

.parler-hero h2 {
  margin: 0;
  background: linear-gradient(100deg, #ff2b8a 0%, #ff3858 46%, #ff7a00 100%);
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: clamp(4.4rem, 16vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow:
    0 3px 0 rgba(255, 235, 184, 0.12),
    0 24px 44px rgba(255, 58, 80, 0.34);
  -webkit-background-clip: text;
}

.parler-hero p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 950;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.parler-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.parler-dialogue-panel,
.parler-info-card,
.parler-offer-card,
.parler-choice-card {
  border: 1px solid color-mix(in srgb, var(--accent, #f1517a) 58%, rgba(255, 255, 255, 0.22));
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #f1517a) 16%, transparent), rgba(2, 10, 23, 0.92)),
    rgba(3, 11, 26, 0.94);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.3),
    0 0 26px color-mix(in srgb, var(--accent, #f1517a) 28%, transparent),
    inset 0 0 26px rgba(255, 255, 255, 0.04);
}

.parler-dialogue-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.4rem);
}

.parler-guide {
  position: absolute;
  left: clamp(-5rem, -7vw, -2rem);
  bottom: -5.8rem;
  width: min(48%, 360px);
  max-width: none;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.42));
  transform: rotate(-2deg);
  pointer-events: none;
  user-select: none;
}

.parler-dialogue-copy {
  display: grid;
  gap: 1rem;
  width: min(52%, 410px);
  margin-left: auto;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.parler-dialogue-copy .icon-bubble,
.parler-offer-card .icon-bubble {
  width: 5rem;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 18%, rgba(255, 255, 255, 0.08));
}

.parler-dialogue-copy p,
.parler-info-card p,
.parler-offer-copy p,
.parler-choice-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.48;
}

.parler-side-panels {
  display: grid;
  gap: 1rem;
}

.parler-info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  min-height: 170px;
  padding: clamp(1rem, 3vw, 1.35rem);
}

.parler-info-how {
  --accent: #9b4bf2;
}

.parler-info-card .icon-bubble {
  width: 4rem;
  border-radius: 50%;
}

.parler-info-card h3 {
  margin: 0 0 0.45rem;
  color: #ffd36f;
  font-size: clamp(1.3rem, 4vw, 2rem);
  line-height: 1;
}

.parler-info-how h3 {
  color: #c36bff;
}

.parler-section-title {
  display: grid;
  grid-template-columns: minmax(24px, 1fr) auto minmax(24px, 1fr);
  align-items: center;
  gap: 1rem;
  color: var(--white);
  text-align: center;
}

.parler-section-title h3 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1;
}

.parler-section-title span {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff5b4a, transparent);
}

.parler-offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.parler-offer-card {
  position: relative;
  display: grid;
  gap: 1rem;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.parler-offer-pack {
  --accent: #9b4bf2;
}

.parler-offer-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 45%, transparent), transparent 66%);
  pointer-events: none;
}

.parler-offer-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
}

.parler-offer-copy span {
  color: #ffd36f;
  font-weight: 950;
}

.parler-offer-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
}

.parler-offer-copy strong {
  color: color-mix(in srgb, var(--accent) 76%, white);
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
}

.parler-offer-meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.55rem;
  margin-top: auto;
}

.parler-offer-meta span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.55rem 0.75rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.parler-offer-button {
  position: relative;
  z-index: 1;
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(100deg, #ff8a00, #ec217d);
  color: var(--white);
  box-shadow:
    0 0 24px rgba(236, 33, 125, 0.42),
    inset 0 2px 0 rgba(255, 255, 255, 0.24);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 950;
}

.parler-offer-button-purple {
  background: linear-gradient(100deg, #7837ff, #d528ff);
}

.parler-choice-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr 210px;
  gap: 1rem;
  align-items: center;
  min-height: 210px;
  overflow: hidden;
  padding: clamp(1rem, 3vw, 1.45rem);
}

.parler-choice-card h3 {
  margin: 0 0 0.45rem;
  color: var(--white);
  font-size: clamp(1.5rem, 4vw, 2.3rem);
}

.parler-choice-card .action-secondary {
  min-width: 230px;
  margin-top: 1rem;
  border-color: rgba(255, 190, 85, 0.7);
  background: rgba(255, 122, 0, 0.1);
}

.parler-choice-mascot,
.parler-choice-guide {
  max-width: 100%;
  filter: drop-shadow(0 18px 20px rgba(0, 0, 0, 0.34));
  pointer-events: none;
  user-select: none;
}

.parler-choice-mascot {
  width: 160px;
}

.parler-choice-guide {
  width: 210px;
  transform: rotate(-8deg) scale(1.35);
  transform-origin: center bottom;
}

.offer-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.category-layout,
.category-guides {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.category-layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

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

.category-intro-panel,
.category-note-panel,
.category-guide-panel,
.category-offers {
  border: 1px solid color-mix(in srgb, var(--accent, #ff8a00) 48%, rgba(255, 255, 255, 0.22));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #ff8a00) 16%, transparent), rgba(4, 13, 26, 0.86)),
    rgba(4, 13, 26, 0.9);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.25),
    0 0 24px color-mix(in srgb, var(--accent, #ff8a00) 22%, transparent);
}

.category-intro-panel,
.category-note-panel,
.category-guide-panel,
.category-offers {
  padding: clamp(1.1rem, 3vw, 1.75rem);
}

.category-intro-panel,
.category-note-panel {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.category-intro-panel h3,
.category-note-panel h3,
.category-guide-panel h3,
.section-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 4vw, 2.15rem);
  line-height: 1.02;
}

.category-intro-panel p,
.category-guide-panel li {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.category-intro-panel p {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.14rem);
}

.category-note-panel h3 {
  font-size: clamp(1.18rem, 3vw, 1.6rem);
  line-height: 1.18;
}

.category-guide-panel ul,
.category-guide-panel ol {
  display: grid;
  gap: 0.7rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.category-guide-panel li {
  position: relative;
  min-height: 54px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.78rem 0.85rem 0.78rem 2.45rem;
  font-weight: 760;
}

.category-guide-panel li::before {
  position: absolute;
  left: 0.8rem;
  top: 0.82rem;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent, #ff8a00);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1;
}

.category-guide-panel ul li::before {
  content: "";
  box-shadow: 0 0 14px color-mix(in srgb, var(--accent, #ff8a00) 60%, transparent);
}

.category-guide-panel ol {
  counter-reset: category-step;
}

.category-guide-panel ol li {
  counter-increment: category-step;
}

.category-guide-panel ol li::before {
  content: counter(category-step);
}

.category-offers {
  display: grid;
  gap: 1rem;
}

.section-heading {
  display: grid;
  gap: 0.3rem;
}

.offer-card,
.detail-panel,
.booking-panel,
.confirmation-panel,
.action-passage-panel,
.action-passage-preview,
.content-access-panel {
  border: 1px solid color-mix(in srgb, var(--accent, #ff8a00) 50%, rgba(255, 255, 255, 0.24));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #ff8a00) 18%, transparent), rgba(4, 13, 26, 0.86)),
    rgba(4, 13, 26, 0.88);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.28),
    0 0 28px color-mix(in srgb, var(--accent, #ff8a00) 28%, transparent);
}

.offer-card {
  display: grid;
  gap: 0.7rem;
  min-height: 260px;
  padding: 1.1rem;
}

.offer-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.08;
}

.offer-card p,
.detail-panel p,
.booking-panel p,
.confirmation-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.offer-meta span,
.summary-line {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.38rem 0.62rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
}

.offer-price {
  color: #fff0a6;
  font-family: "Arial Black", "Arial Rounded MT Bold", Impact, system-ui, sans-serif;
  font-size: 1.45rem;
}

.offer-actions,
.detail-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: auto;
}

.action-primary,
.action-secondary {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  color: var(--white);
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
}

.action-primary {
  background: linear-gradient(100deg, var(--accent, #ff8a00), #ec217d);
  box-shadow: 0 0 20px color-mix(in srgb, var(--accent, #ff8a00) 34%, transparent);
}

.action-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.detail-page {
  display: grid;
  gap: 1rem;
}

.detail-page-header {
  display: grid;
  gap: 0.45rem;
  max-width: 920px;
}

.detail-page-header h2,
.detail-panel h3,
.booking-panel h3 {
  margin: 0;
}

.detail-page-header h2 {
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.92;
}

.detail-page-header p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.45;
}

.detail-visual {
  width: min(100%, 920px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent, #ff8a00) 48%, rgba(255, 255, 255, 0.2));
  border-radius: 20px;
  background: rgba(4, 13, 26, 0.9);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    0 0 30px color-mix(in srgb, var(--accent, #ff8a00) 28%, transparent);
}

.detail-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.detail-panel,
.booking-panel,
.confirmation-panel,
.action-passage-panel,
.content-access-panel {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.detail-panel h2,
.booking-panel h2,
.confirmation-panel h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2rem, 7vw, 3.8rem);
  line-height: 0.95;
}

.detail-panel h3,
.booking-panel h3 {
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  line-height: 1;
}

.detail-list {
  display: grid;
  gap: 0.6rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.72rem 0.85rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 760;
}

.booking-form {
  display: grid;
  gap: 0.8rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.checkout-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
  font-size: 1.3rem;
  font-weight: 950;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.82);
}

.action-passage,
.content-access {
  display: grid;
  gap: 1rem;
}

.action-passage-hero {
  display: grid;
  gap: 0.35rem;
  border-radius: 18px;
  background:
    linear-gradient(115deg, color-mix(in srgb, var(--accent, #ff8a00) 18%, transparent), rgba(4, 13, 26, 0.78)),
    url("./assets/magama-jungle.jpg") center / cover;
  padding: clamp(1.3rem, 4vw, 2.3rem);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.action-passage-hero h2 {
  margin: 0;
  font-size: clamp(2.2rem, 9vw, 5rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.action-passage-hero p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  font-weight: 820;
}

.action-passage-layout,
.content-access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 1rem;
  align-items: stretch;
}

.action-passage-panel {
  display: grid;
  gap: 1rem;
}

.action-passage-panel h3,
.content-access-panel h3 {
  margin: 0;
  color: #fff4bd;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.action-passage-panel p,
.content-access-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.48;
}

.pricing-note {
  border: 1px solid color-mix(in srgb, var(--accent, #ff8a00) 45%, rgba(255, 255, 255, 0.18));
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent, #ff8a00) 16%, rgba(255, 255, 255, 0.06));
  padding: 0.75rem 0.85rem;
  color: #fff4bd;
  font-weight: 850;
}

.action-step-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.action-step-list li {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0.55rem;
  text-align: center;
}

.action-step-list strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent, #ff8a00), #ec217d);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent, #ff8a00) 42%, transparent);
}

.action-step-list span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 850;
}

.action-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.action-mini-grid div {
  display: grid;
  gap: 0.18rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
}

.action-mini-grid span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.action-mini-grid strong {
  color: #fff7c7;
  line-height: 1.12;
}

.action-passage-preview {
  display: grid;
  align-content: end;
  min-height: 420px;
  overflow: hidden;
  padding: 1rem;
  background-position: center;
  background-size: cover;
}

.action-passage-preview.has-offer-visual {
  align-content: stretch;
  min-height: 0;
  padding: 0;
  background: rgba(4, 13, 26, 0.92);
}

.action-passage-poster {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.action-passage-preview div {
  display: grid;
  gap: 0.45rem;
  border-radius: 16px;
  background: rgba(3, 8, 19, 0.78);
  padding: 1rem;
  backdrop-filter: blur(8px);
}

.action-passage-preview span {
  color: #fff4bd;
  font-weight: 950;
}

.action-passage-preview h3,
.action-passage-preview p {
  margin: 0;
}

.action-passage-preview h3 {
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.action-passage-preview p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.action-preview-parler {
  background-image: linear-gradient(180deg, rgba(5, 8, 18, 0.2), rgba(5, 8, 18, 0.84)), url("./assets/parler-model.png");
}

.action-preview-partager {
  background-image: linear-gradient(180deg, rgba(5, 8, 18, 0.2), rgba(5, 8, 18, 0.84)), url("./assets/partager-model.png");
}

.action-preview-feter {
  background-image: linear-gradient(180deg, rgba(5, 8, 18, 0.2), rgba(5, 8, 18, 0.84)), url("./assets/feter-model.png");
}

.action-preview-vivre {
  background-image: linear-gradient(180deg, rgba(5, 8, 18, 0.2), rgba(5, 8, 18, 0.84)), url("./assets/vivre-model.png");
}

.action-preview-decouvrir {
  background-image: linear-gradient(180deg, rgba(5, 8, 18, 0.2), rgba(5, 8, 18, 0.84)), url("./assets/decouvrir-model.png");
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.platform-button {
  display: grid;
  place-items: center;
  gap: 0.15rem;
  min-height: 52px;
  border: 1px solid color-mix(in srgb, var(--accent, #9b4bf2) 55%, rgba(255, 255, 255, 0.22));
  border-radius: 14px;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent, #9b4bf2) 36%, transparent), rgba(255, 255, 255, 0.08));
  color: var(--white);
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.platform-button span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 780;
}

.platform-button.is-waiting {
  color: rgba(255, 255, 255, 0.58);
  cursor: not-allowed;
}

.content-note {
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem;
  font-size: 0.95rem;
}

.personal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}

.personal-panel,
.next-panel,
.recommendation-section,
.history-section {
  border: 1px solid color-mix(in srgb, var(--accent, #83c928) 48%, rgba(255, 255, 255, 0.22));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent, #83c928) 17%, transparent), rgba(4, 13, 26, 0.86)),
    rgba(4, 13, 26, 0.9);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.26),
    0 0 24px color-mix(in srgb, var(--accent, #83c928) 22%, transparent);
}

.personal-panel,
.next-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.personal-panel h3,
.next-panel h3,
.recommendation-section h3,
.history-section h3 {
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2.4rem);
  line-height: 1;
}

.next-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.progress-track {
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.progress-track span {
  display: block;
  width: var(--completion, 0%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8a00, #ec217d, #22a8f2, #83c928);
  box-shadow: 0 0 18px rgba(255, 138, 0, 0.42);
}

.answer-review {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
}

.answer-review-item {
  display: grid;
  gap: 0.3rem;
  min-height: 88px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 26%, transparent), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
}

.answer-review-item strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.88rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.answer-review-item span {
  width: fit-content;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 36%, rgba(255, 255, 255, 0.12));
  padding: 0.32rem 0.62rem;
  color: var(--white);
  font-weight: 950;
}

.recommendation-section,
.history-section {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
  padding: clamp(1.15rem, 3vw, 1.8rem);
}

.recommendation-grid,
.history-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.recommendation-card,
.history-item {
  display: grid;
  gap: 0.65rem;
  min-height: 188px;
  border: 1px solid color-mix(in srgb, var(--accent, #ff8a00) 42%, rgba(255, 255, 255, 0.18));
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 8%, color-mix(in srgb, var(--accent, #ff8a00) 28%, transparent), transparent 36%),
    rgba(255, 255, 255, 0.08);
  padding: 1rem;
}

.recommendation-card h4,
.history-item strong {
  margin: 0;
  color: var(--white);
  font-size: 1.18rem;
  line-height: 1.12;
}

.recommendation-card p,
.history-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.history-item {
  min-height: 132px;
}

.history-item span {
  color: #ffd36f;
  font-size: 0.9rem;
  font-weight: 950;
}

.app-topbar a:focus-visible,
.app-logo:focus-visible,
.action-primary:focus-visible,
.action-secondary:focus-visible,
.route-search:focus-visible,
.route-filter:focus-visible,
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible {
  outline: 4px solid #ffe3a3;
  outline-offset: 3px;
}

.site-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  width: min(100%, 1120px);
  margin: 0 auto;
  border-radius: 24px;
  background: var(--surface-light);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-card);
}

.site-topbar strong {
  color: var(--magama-navy);
}

.site-topbar nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.site-topbar a {
  border-radius: var(--radius-button);
  color: var(--text-strong);
  font-size: 0.94rem;
  font-weight: 850;
  padding: 0.45rem 0.55rem;
  text-decoration: none;
}

.site-home {
  width: min(100%, 820px);
  margin: clamp(4rem, 12vw, 8rem) auto 0;
  border-radius: var(--radius-card);
  background: var(--surface-light);
  box-shadow: var(--shadow-elevated);
  padding: clamp(1.4rem, 5vw, 3rem);
}

.site-home h1 {
  max-width: 12ch;
  color: var(--magama-navy);
  font-size: clamp(2.4rem, 9vw, 5rem);
}

.site-home p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.5vw, 1.22rem);
  line-height: 1.5;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.secondary-link {
  min-height: 48px;
  padding-inline: 1.25rem;
  background: var(--magama-navy);
  box-shadow: none;
}

@media (min-width: 700px) {
  .reflection-card {
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    align-items: center;
    padding: var(--space-lg);
  }

  .answer-group {
    grid-column: auto;
    min-width: 190px;
  }

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

  .universe-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1040px) {
  .hero-inner {
    min-height: 100svh;
  }

  .hero-poster,
  .possibilities-poster {
    width: min(100vw, calc(100svh * 0.6667));
    max-width: 690px;
  }

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

  .universe-card,
  .universe-card:last-child {
    grid-column: auto;
  }

  .universe-card {
    min-height: 224px;
  }
}

@media (max-width: 420px) {
  .intro-step,
  .main-site {
    padding-inline: 0.75rem;
  }

  .main-site {
    padding: 0;
  }

  .hero-inner {
    min-height: 100svh;
  }

  .hero-poster {
    width: max(100vw, calc(100svh * 0.6667));
    margin-left: calc((100vw - max(100vw, calc(100svh * 0.6667))) / 2);
  }

  .reflection-poster {
    width: max(100vw, calc(100svh * 0.6667));
    margin-left: calc((100vw - max(100vw, calc(100svh * 0.6667))) / 2);
  }

  .possibilities-poster {
    width: 100vw;
    margin-left: 0;
  }

  .site-poster {
    width: max(100vw, calc(100svh * 1.5));
    margin-left: 0;
  }

  .app-topbar {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .app-topbar nav,
  .app-actions {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
  }

  .site-page {
    padding: 1rem;
  }

  .offer-grid,
  .feature-grid,
  .detail-layout,
  .parler-intro-grid,
  .parler-offer-grid,
  .parler-choice-card,
  .form-grid,
  .personal-layout,
  .category-layout,
  .category-guides,
  .action-passage-layout,
  .content-access-layout,
  .action-step-list,
  .action-mini-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .action-passage-preview {
    min-height: 300px;
  }

  .offer-card {
    min-height: 0;
  }

  .parler-dialogue-panel {
    min-height: 620px;
  }

  .parler-guide {
    left: -5rem;
    bottom: 5rem;
    width: 92%;
  }

  .parler-dialogue-copy {
    width: 100%;
    margin: 330px 0 0;
    padding: 1rem;
  }

  .parler-choice-guide {
    display: none;
  }

  .reflection-hero {
    left: 176px;
    top: 30px;
    width: 648px;
  }

  .reflection-title {
    line-height: 0.77;
  }

  .reflection-title span:nth-child(1) {
    font-size: 90px;
  }

  .reflection-title span:nth-child(2) {
    margin-top: 10px;
    font-size: 70px;
  }

  .reflection-title span:nth-child(3) {
    margin-top: 8px;
    font-size: 68px;
  }

  .reflection-title span:nth-child(4) {
    margin-top: 8px;
    font-size: 70px;
  }

  .reflection-poster .reflection-list {
    left: 176px;
    top: 386px;
    width: 656px;
    gap: 8px;
  }

  .reflection-poster .reflection-card {
    grid-template-columns: 112px minmax(0, 1fr) 132px;
    width: 656px;
    height: 178px;
    padding: 14px 14px 13px 62px;
    border-radius: 28px;
  }

  .reflection-poster .card-number {
    left: -10px;
    top: 18px;
    width: 76px;
    font-size: 50px;
  }

  .reflection-illustration {
    width: 104px;
    max-height: 108px;
  }

  .reflection-card[data-card-number="2"] .reflection-illustration,
  .reflection-card[data-card-number="3"] .reflection-illustration,
  .reflection-card[data-card-number="4"] .reflection-illustration,
  .reflection-card[data-card-number="5"] .reflection-illustration {
    width: 112px;
  }

  .reflection-poster .reflection-copy {
    padding-right: 8px;
  }

  .reflection-poster .reflection-copy h2 {
    margin-bottom: 6px;
    font-size: 30px;
  }

  .reflection-poster .reflection-copy p {
    font-size: 20px;
    line-height: 1.12;
  }

  .reflection-poster .answer-group {
    gap: 8px;
  }

  .reflection-poster .answer-button {
    min-height: 49px;
    border-radius: 20px;
    font-size: 22px;
  }

  .page2-mascot {
    left: 162px;
    top: 1265px;
    width: 190px;
  }

  .reflection-card,
  .universe-card,
  .site-home {
    border-radius: 22px;
  }

  .icon-bubble {
    width: 4.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(10px, -18px, 0);
  }
}
