:root {
  --green-950: #12271f;
  --green-900: #18382e;
  --green-800: #2f4d40;
  --green-700: #3f5345;
  --green-500: #6e7f6a;
  --sage: #aab49d;
  --sage-pale: #e9eee7;
  --gold: #c49a4a;
  --gold-soft: #d8b978;
  --sand: #d8cfbe;
  --ivory: #f8f6ef;
  --paper: #fffdf8;
  --ink: #24322c;
  --muted: #687169;
  --shadow: 0 24px 70px rgba(18, 39, 31, .16);
  --radius: 28px;
  --card-accent: #d8b978;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 48% -10%, rgba(255,255,255,.96), transparent 42%),
    radial-gradient(circle at 12% 18%, rgba(216,185,120,.14), transparent 32%),
    radial-gradient(circle at 83% 72%, rgba(170,180,157,.22), transparent 36%),
    linear-gradient(106deg,
      #f8f7f1 0%,
      #eef2ec 45%,
      #dfe8dc 72%,
      #9caf9d 91%,
      #4e6959 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(63,83,69,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,83,69,.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 86%);
}
button, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, textarea:focus-visible, .flip-card:focus-visible {
  outline: 3px solid rgba(196,154,74,.58);
  outline-offset: 4px;
}
[hidden] { display: none !important; }

.screen { min-height: 100vh; }
.screen--intro {
  display: grid;
  place-items: center;
  padding: 38px 20px;
  position: relative;
  overflow: hidden;
  transition: opacity .42s ease, transform .42s ease, filter .42s ease;
}
.screen--intro.is-leaving {
  opacity: 0;
  transform: scale(.985);
  filter: blur(6px);
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}
.ambient-orb--gold {
  width: min(78vw, 830px);
  aspect-ratio: 1;
  left: -16%;
  top: -32%;
  background: radial-gradient(circle, rgba(216,185,120,.22), rgba(216,185,120,.06) 48%, transparent 72%);
  animation: floatOrb 13s ease-in-out infinite;
}
.ambient-orb--sage {
  width: min(72vw, 760px);
  aspect-ratio: 1;
  right: -17%;
  bottom: -36%;
  background: radial-gradient(circle, rgba(110,127,106,.20), rgba(110,127,106,.05) 50%, transparent 74%);
  animation: floatOrb 15s ease-in-out infinite reverse;
}
.intro-card {
  width: min(790px, 100%);
  padding: clamp(30px, 5vw, 62px);
  position: relative;
  text-align: center;
  border: 1px solid rgba(196,154,74,.44);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,252,.88), rgba(247,249,244,.77));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  isolation: isolate;
}
.intro-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: calc(var(--radius) - 9px);
  border: 1px solid rgba(216,185,120,.16);
  pointer-events: none;
}
.logo-aura {
  position: relative;
  display: inline-grid;
  place-items: center;
  isolation: isolate;
}
.logo-aura::before {
  content: "";
  position: absolute;
  width: 130%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  background: radial-gradient(circle, rgba(216,185,120,.30), rgba(216,185,120,.08) 48%, transparent 72%);
  animation: logoBreathe 6.8s ease-in-out infinite;
}
.logo-aura--intro { width: min(190px, 45vw); margin-bottom: 10px; }
.intro-logo { width: 100%; height: auto; display: block; filter: drop-shadow(0 9px 22px rgba(196,154,74,.15)); }
.logo-shine {
  position: absolute;
  inset: -4%;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  pointer-events: none;
}
.logo-shine::after {
  content: "";
  position: absolute;
  top: -20%;
  bottom: -20%;
  width: 30%;
  left: -55%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.88), rgba(216,185,120,.30), transparent);
  transform: skewX(-18deg);
  animation: logoSweep 7.5s ease-in-out infinite 1.4s;
}
h1, h2, h3, .brand span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  letter-spacing: .02em;
}
h1 { margin: 8px 0 18px; font-size: clamp(42px, 7vw, 72px); line-height: .98; font-weight: 500; color: var(--green-900); }
h2 { margin: 8px 0 10px; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; font-weight: 500; }
h3 { font-size: 26px; margin: 4px 0 10px; }
p { line-height: 1.7; }
.intro-lead { color: var(--gold); font-family: Georgia, serif; font-size: 20px; font-style: italic; margin-bottom: 22px; }
.eyebrow { margin: 0; color: var(--gold); font-size: 12px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.microcopy { margin: 16px 0 0; color: var(--muted); font-size: 12px; }
.microcopy--left { text-align: left; margin-top: 7px; }
.intro-copy { max-width: 650px; margin: 18px auto 0; color: #526057; }
.opening-question {
  max-width: 650px;
  margin: 0 auto;
  padding: 20px clamp(18px, 4vw, 34px);
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(232,238,230,.72), rgba(255,253,248,.68));
  border: 1px solid rgba(63,83,69,.10);
}
.opening-question p {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.42;
}
.opening-question__line {
  display: block;
  width: 58px;
  height: 1px;
  margin: 0 auto 13px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 23px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green-900); color: white; box-shadow: 0 10px 25px rgba(24,56,46,.24); }
.button--primary:hover { background: var(--green-800); box-shadow: 0 14px 30px rgba(24,56,46,.30); }
.button--secondary { border-color: rgba(196,154,74,.65); color: var(--green-900); background: rgba(255,253,248,.88); }
.button--secondary:hover { box-shadow: 0 10px 24px rgba(196,154,74,.17); }
.button--ghost { color: var(--green-800); background: rgba(255,255,255,.25); border-color: rgba(63,83,69,.22); }
.button--small { min-height: 38px; padding: 8px 15px; font-size: 13px; }
.button--enter { min-width: 245px; }
.button-arrow { transition: transform .22s ease; }
.button--enter:hover .button-arrow { transform: translateX(4px); }
.intro-actions { display: flex; flex-wrap: wrap; gap: 11px; align-items: center; justify-content: center; margin-top: 22px; }

.sound-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(63,83,69,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.43);
  color: var(--green-800);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.sound-toggle:hover { transform: translateY(-1px); border-color: rgba(196,154,74,.55); }
.sound-toggle[aria-pressed="true"] { background: rgba(216,185,120,.18); border-color: rgba(196,154,74,.65); }
.sound-toggle__icon { font-size: 20px; line-height: 1; transition: transform .6s ease; }
.sound-toggle[aria-pressed="true"] .sound-toggle__icon { transform: rotate(180deg); }
.sound-toggle--compact { min-height: 38px; font-size: 13px; padding: 7px 12px; }

.threshold-transition {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(255,255,252,.98) 0%, rgba(238,243,235,.96) 54%, rgba(31,61,49,.90) 140%);
  opacity: 0;
  pointer-events: none;
}
.threshold-transition.is-active { animation: transitionFade 1.72s ease both; }
.threshold-transition__rings {
  position: absolute;
  width: min(78vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(196,154,74,.34);
  box-shadow:
    0 0 0 36px rgba(216,185,120,.055),
    0 0 0 78px rgba(110,127,106,.04),
    0 0 90px rgba(196,154,74,.12);
  animation: thresholdRings 1.55s ease both;
}
.threshold-transition__logo {
  width: min(210px, 44vw);
  position: relative;
  text-align: center;
  animation: thresholdLogo 1.55s cubic-bezier(.2,.75,.2,1) both;
}
.threshold-transition__logo img { width: 100%; display: block; filter: drop-shadow(0 16px 28px rgba(196,154,74,.18)); }
.threshold-transition__logo p { margin: 12px 0 0; color: var(--green-900); font-family: Georgia, serif; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }

.screen--experience { padding-bottom: 40px; }
.topbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(196,154,74,.24);
  background: rgba(244,247,241,.78);
  backdrop-filter: blur(17px);
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--green-900); text-decoration: none; font-size: 25px; }
.brand-logo-wrap { width: 48px; height: 48px; position: relative; display: grid; place-items: center; }
.brand-logo-wrap::before { content: ""; position: absolute; inset: 2px; border-radius: 50%; box-shadow: 0 0 22px rgba(196,154,74,.18); }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.topbar-actions { display: flex; align-items: center; gap: 9px; }
.wheel-section { width: min(1320px, 100%); margin: 0 auto; padding: 42px 20px 20px; text-align: center; }
.section-heading { max-width: 790px; margin: 0 auto 18px; }
.section-heading p:last-child { color: var(--muted); margin-top: 7px; }
.card-wheel {
  position: relative;
  width: min(980px, 90vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.wheel-center {
  position: absolute;
  z-index: 1;
  left: 50%; top: 50%;
  width: 198px; height: 198px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(196,154,74,.52);
  background: radial-gradient(circle, rgba(255,255,252,.98), rgba(229,236,226,.80));
  box-shadow: 0 18px 52px rgba(24,56,46,.13), inset 0 1px rgba(255,255,255,.9);
}
.wheel-center__logo { width: 120px; }
.wheel-center__logo img { width: 100%; display: block; opacity: .9; }
.wheel-center__label { z-index: 3; position: absolute; bottom: 15px; color: var(--green-900); font-family: Georgia, serif; font-size: 10.5px; letter-spacing: .17em; line-height: 1.25; }
.guidance-orbit {
  position: absolute;
  width: 244px;
  height: 244px;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,.78);
  border-right-color: rgba(196,154,74,.24);
  opacity: 0;
  pointer-events: none;
}
.guidance-orbit::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 25px;
  width: 9px;
  height: 9px;
  border-top: 1.8px solid var(--gold);
  border-right: 1.8px solid var(--gold);
  transform: rotate(34deg);
}
.screen--experience.is-entering .guidance-orbit { animation: guideSpin 2.6s cubic-bezier(.2,.75,.2,1) 1.05s both; }

.card-choice {
  position: absolute;
  left: 50%; top: 50%;
  width: 136px;
  min-height: 218px;
  display: grid;
  grid-template-rows: auto 42px;
  justify-items: center;
  align-items: start;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-382px) rotate(calc(-1 * var(--angle)));
  transition: filter .25s ease;
}
.card-choice__frame {
  width: 118px;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  border: 1px solid rgba(216,185,120,.76);
  background: #0e2a20;
  box-shadow: 0 14px 28px rgba(18,39,31,.18);
  transform-origin: center;
  transition: transform .28s ease, box-shadow .28s ease, filter .28s ease;
  isolation: isolate;
}
.card-choice__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,.05) 38%, rgba(255,244,210,.58) 49%, rgba(255,255,255,.07) 58%, transparent 78%);
  transform: translateX(-145%) skewX(-12deg);
}
.card-choice__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), inset 0 0 24px rgba(216,185,120,.08);
}
.card-choice img { display: block; width: 100%; height: auto; object-fit: contain; }
.card-choice__label {
  width: 136px;
  min-height: 36px;
  margin-top: 7px;
  padding: 5px 8px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  background: rgba(255,253,248,.88);
  border: 1px solid rgba(63,83,69,.07);
  box-shadow: 0 4px 15px rgba(18,39,31,.07);
  font-family: Georgia, serif;
  font-size: 11.5px;
  line-height: 1.18;
  letter-spacing: .035em;
  text-align: center;
  white-space: normal;
  overflow-wrap: normal;
  hyphens: none;
}
.card-choice:hover .card-choice__frame,
.card-choice:focus-visible .card-choice__frame {
  transform: translateY(-9px) scale(1.075);
  box-shadow: 0 24px 48px rgba(18,39,31,.28), 0 0 0 4px rgba(216,185,120,.18), 0 0 34px rgba(216,185,120,.22);
  filter: brightness(1.075) saturate(1.04);
}
.card-choice:hover .card-choice__frame::before,
.card-choice:focus-visible .card-choice__frame::before { animation: cardSweep .82s ease both; }
.card-choice:hover .card-choice__label,
.card-choice:focus-visible .card-choice__label { color: var(--green-950); border-color: rgba(196,154,74,.34); }
.screen--experience.is-entering .card-choice { animation: cardArrival .76s cubic-bezier(.2,.72,.2,1) both; animation-delay: calc(270ms + (var(--i) * 55ms)); }
.screen--experience.is-entering .card-choice__frame::before { animation: cardSweep 1.05s ease both; animation-delay: calc(760ms + (var(--i) * 65ms)); }
.screen--experience.is-entering .wheel-center { animation: centerArrival .78s cubic-bezier(.2,.72,.2,1) 90ms both; }
.screen--experience.is-entering .section-heading { animation: headingArrival .72s ease 80ms both; }
.wheel-hint { color: var(--muted); font-size: 13px; margin-top: 4px; }

.dialog { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 18px; }
.dialog-backdrop { position: absolute; inset: 0; background: rgba(11,27,22,.74); backdrop-filter: blur(11px); }
.dialog-shell {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(20px, 3vw, 42px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 17% 18%, color-mix(in srgb, var(--card-accent) 13%, transparent), transparent 36%),
    linear-gradient(145deg, #fffdf9, #f3f6f0);
  box-shadow: 0 36px 100px rgba(0,0,0,.34);
  border: 1px solid rgba(216,185,120,.66);
  animation: dialogReveal .42s cubic-bezier(.2,.72,.2,1) both;
}
.dialog-close {
  position: sticky;
  float: right;
  top: 0;
  z-index: 4;
  width: 42px; height: 42px;
  border: 1px solid rgba(63,83,69,.18);
  border-radius: 50%;
  background: rgba(255,253,248,.92);
  color: var(--green-900);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.dialog-layout { display: grid; grid-template-columns: minmax(280px, 430px) 1fr; gap: clamp(28px, 4vw, 58px); align-items: start; }
.card-stage { display: grid; justify-items: center; gap: 16px; position: sticky; top: 8px; }
.flip-card { width: min(365px, 78vw); aspect-ratio: 365 / 568; perspective: 1400px; cursor: pointer; }
.flip-card__inner { position: relative; width: 100%; height: 100%; transition: transform .86s cubic-bezier(.2,.72,.2,1); transform-style: preserve-3d; }
.flip-card.is-flipped .flip-card__inner { transform: rotateY(180deg); }
.flip-card__face {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  backface-visibility: hidden;
  box-shadow: 0 24px 65px rgba(18,39,31,.27), 0 0 36px color-mix(in srgb, var(--card-accent) 18%, transparent);
  border: 1px solid rgba(216,185,120,.82);
  isolation: isolate;
}
.flip-card__back { transform: rotateY(180deg); }
.flip-card img { width: 100%; height: 100%; object-fit: contain; display: block; background: #0e2a20; }
.card-glint {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
}
.card-glint::after {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  width: 32%;
  left: -55%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.70), rgba(216,185,120,.28), transparent);
  transform: skewX(-17deg);
}
.flip-card.is-glinting .card-glint::after { animation: selectedSweep 1s ease both; }
.card-stage-hint { max-width: 340px; margin: -2px 0 0; color: var(--muted); text-align: center; font-size: 11.5px; line-height: 1.5; }
.reflection-panel { min-width: 0; padding-top: 18px; }
.card-subtitle { color: var(--gold); font-family: Georgia, serif; font-size: 21px; font-style: italic; margin-top: 0; }
.before-reveal { margin-top: 22px; }
.before-reveal__prompt { padding-left: 15px; border-left: 2px solid rgba(196,154,74,.66); color: #56635a; font-family: Georgia, serif; font-size: 17px; }
.message-reveal { margin-top: 21px; animation: reveal .52s ease both; }
.message-heading { padding: 14px 16px; border-radius: 15px; background: rgba(255,255,255,.55); border: 1px solid rgba(63,83,69,.10); }
.message-heading p:last-child { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.5; }
.resonance-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin: 22px 0; }
.resonance-grid--preview { max-width: 520px; }
.resonance-grid div { padding: 13px 14px; border-radius: 14px; background: rgba(232,236,228,.66); border: 1px solid rgba(63,83,69,.10); }
.resonance-grid dt { margin-bottom: 4px; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.resonance-grid dd { margin: 0; color: var(--green-900); font-weight: 650; line-height: 1.35; }
.essence { padding-left: 15px; border-left: 2px solid var(--gold); color: #46554c; font-family: Georgia, serif; font-size: 18px; }
.non-labeling-note { margin: 18px 0; padding: 12px 14px; border-radius: 12px; color: var(--muted); background: rgba(255,255,255,.58); font-size: 12px; line-height: 1.55; }
.exploration { margin-top: 28px; animation: reveal .5s ease both; }
.pause-cue { display: flex; gap: 14px; align-items: center; padding: 15px 17px; border-radius: 15px; background: var(--green-900); color: white; }
.pause-cue p { margin: 0; line-height: 1.45; }
.pause-dot { flex: 0 0 auto; width: 13px; height: 13px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 0 0 rgba(216,185,120,.45); animation: pulse 2.8s infinite; }
.questions { margin: 28px 0 22px; }
.questions ol { margin: 13px 0 0; padding-left: 24px; }
.questions li { margin: 12px 0; padding-left: 7px; font-family: Georgia, serif; font-size: 18px; line-height: 1.55; }
.note-label { display: block; margin: 18px 0 8px; font-weight: 700; color: var(--green-900); }
textarea { width: 100%; resize: vertical; padding: 16px; border: 1px solid rgba(63,83,69,.25); border-radius: 14px; background: rgba(255,255,255,.92); color: var(--ink); line-height: 1.55; }
.orientation-card { margin-top: 27px; padding: 22px; border-radius: 19px; border: 1px solid rgba(196,154,74,.42); background: linear-gradient(135deg, rgba(216,185,120,.12), rgba(232,236,228,.50)); }
.orientation-card p { margin-bottom: 10px; }
.cta-row, .trace-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 17px; }
.dialog-footer { margin-top: 28px; padding-top: 17px; border-top: 1px solid rgba(63,83,69,.14); color: var(--muted); font-size: 11px; line-height: 1.5; text-align: center; }

@keyframes floatOrb { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(20px,14px,0) scale(1.04); } }
@keyframes logoBreathe { 0%,100% { transform: scale(.97); opacity: .66; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes logoSweep { 0%,72% { left: -55%; opacity: 0; } 78% { opacity: .88; } 92% { left: 125%; opacity: .72; } 100% { left: 125%; opacity: 0; } }
@keyframes transitionFade { 0% { opacity: 0; } 18%,72% { opacity: 1; } 100% { opacity: 0; } }
@keyframes thresholdRings { 0% { transform: scale(.48); opacity: 0; } 52% { opacity: 1; } 100% { transform: scale(1.16); opacity: 0; } }
@keyframes thresholdLogo { 0% { transform: scale(.78); opacity: 0; filter: blur(5px); } 45% { opacity: 1; filter: none; } 82% { transform: scale(1.03); opacity: 1; } 100% { transform: scale(.94); opacity: 0; } }
@keyframes guideSpin { 0% { transform: rotate(-80deg) scale(.82); opacity: 0; } 18% { opacity: .85; } 78% { opacity: .7; } 100% { transform: rotate(280deg) scale(1.1); opacity: 0; } }
@keyframes cardArrival {
  from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-290px) rotate(calc(-1 * var(--angle))) scale(.72); filter: blur(3px); }
  to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-382px) rotate(calc(-1 * var(--angle))) scale(1); filter: none; }
}
@keyframes centerArrival { from { opacity: 0; transform: translate(-50%, -50%) scale(.72); } to { opacity: 1; transform: translate(-50%, -50%) scale(1); } }
@keyframes headingArrival { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
@keyframes cardSweep { from { transform: translateX(-145%) skewX(-12deg); } to { transform: translateX(145%) skewX(-12deg); } }
@keyframes selectedSweep { from { left: -55%; } to { left: 135%; } }
@keyframes dialogReveal { from { opacity: 0; transform: translateY(16px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(216,185,120,.45); } 70% { box-shadow: 0 0 0 12px rgba(216,185,120,0); } 100% { box-shadow: 0 0 0 0 rgba(216,185,120,0); } }
@keyframes reveal { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .card-wheel { width: min(820px, 94vw); }
  .card-choice {
    width: 124px;
    min-height: 196px;
    grid-template-rows: auto 40px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-315px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 102px; }
  .card-choice__label { width: 124px; font-size: 10.8px; }
  .wheel-center { width: 166px; height: 166px; }
  .wheel-center__logo { width: 99px; }
  .wheel-center__label { bottom: 10px; }
  .guidance-orbit { width: 204px; height: 204px; }
  @keyframes cardArrival {
    from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-235px) rotate(calc(-1 * var(--angle))) scale(.72); filter: blur(3px); }
    to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-315px) rotate(calc(-1 * var(--angle))) scale(1); filter: none; }
  }
}

@media (max-width: 780px) {
  .wheel-section { padding-top: 28px; }
  .card-wheel { width: 100%; aspect-ratio: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 12px; margin-top: 30px; }
  .wheel-center { display: none; }
  .card-choice { position: static; width: 100%; min-height: 0; transform: none; grid-template-rows: auto 42px; }
  .card-choice__frame { width: min(150px, 100%); margin: 0 auto; }
  .card-choice__label { width: min(160px, 100%); min-height: 40px; }
  .screen--experience.is-entering .card-choice { animation: mobileCardArrival .58s cubic-bezier(.2,.72,.2,1) both; animation-delay: calc(180ms + (var(--i) * 48ms)); }
  .dialog-layout { grid-template-columns: 1fr; }
  .card-stage { position: static; }
  .reflection-panel { padding-top: 0; }
  .topbar { align-items: flex-start; }
  .topbar-actions { flex-wrap: wrap; justify-content: flex-end; }
}

@keyframes mobileCardArrival { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: none; } }

@media (max-width: 520px) {
  .topbar { min-height: 64px; padding-inline: 14px; }
  .brand-logo-wrap { width: 39px; height: 39px; }
  .brand span { font-size: 21px; }
  .sound-toggle--compact [data-sound-label] { display: none; }
  .sound-toggle--compact { width: 39px; padding: 7px; }
  .card-wheel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resonance-grid { grid-template-columns: 1fr; }
  .dialog { padding: 0; }
  .dialog-shell { max-height: 100vh; min-height: 100vh; border-radius: 0; padding: 18px; }
  .button:not(.button--small) { width: 100%; }
  .intro-card { padding: 28px 20px; }
  .intro-actions { flex-direction: column; }
  .sound-toggle--intro { width: 100%; }
}

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

@media print {
  body { background: white; }
  #intro, #experience, .dialog-backdrop, .dialog-close, #flipButton, #exploreButton, .trace-actions, .cta-row, .dialog-footer, .card-stage-hint { display: none !important; }
  .dialog { position: static; display: block !important; padding: 0; }
  .dialog-shell { box-shadow: none; border: 0; max-height: none; overflow: visible; padding: 0; }
  .dialog-layout { grid-template-columns: 240px 1fr; gap: 24px; }
  .card-stage { position: static; }
  .flip-card { width: 220px; }
  .flip-card__inner { transform: none !important; }
  .flip-card__back { display: none; }
  .message-reveal[hidden], .exploration[hidden] { display: block !important; }
  textarea { min-height: 130px; }
}

/* =========================================================
   V0.3 - finition premium, lisibilité, son et progression
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  background:
    radial-gradient(circle at 50% -14%, rgba(255,255,255,.98), transparent 42%),
    radial-gradient(circle at 9% 16%, rgba(216,185,120,.13), transparent 33%),
    radial-gradient(circle at 92% 74%, rgba(89,117,96,.19), transparent 40%),
    radial-gradient(circle at 52% 74%, rgba(226,234,226,.50), transparent 44%),
    linear-gradient(145deg, #fbfbf7 0%, #eef3ed 48%, #f8f4eb 100%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .17;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.11'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.ambient-orb--mist {
  width: min(58vw, 620px);
  aspect-ratio: 1;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.58), rgba(255,255,255,.10) 55%, transparent 75%);
  animation: mistBreathe 10s ease-in-out infinite;
}
.intro-card {
  background: linear-gradient(145deg, rgba(255,255,252,.91), rgba(244,249,243,.80));
  box-shadow: 0 34px 90px rgba(18,39,31,.15), 0 7px 24px rgba(196,154,74,.09), inset 0 1px rgba(255,255,255,.96);
}
.logo-spark {
  position: absolute;
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #f7dc9e;
  box-shadow: 0 0 10px rgba(216,185,120,.85);
  opacity: 0;
}
.logo-spark--one { top: 21%; right: 18%; animation: spark 6.2s ease-in-out 1.1s infinite; }
.logo-spark--two { bottom: 25%; left: 13%; animation: spark 7.4s ease-in-out 3.2s infinite; }

.toast {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  max-width: min(520px, calc(100vw - 32px));
  padding: 12px 17px;
  color: white;
  background: rgba(18,39,31,.94);
  border: 1px solid rgba(216,185,120,.38);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(18,39,31,.28);
  text-align: center;
  font-size: 13px;
  animation: toastIn .28s ease both;
}

.sound-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  justify-content: center;
}
.sound-control--intro {
  padding: 5px;
  border: 1px solid rgba(63,83,69,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.sound-control--compact { flex-wrap: nowrap; }
.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px 0 2px;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}
.volume-control input {
  width: 78px;
  accent-color: var(--gold);
  cursor: pointer;
}
.volume-control--compact { padding: 0 3px; }
.volume-control--compact input { width: 58px; }
.sound-status {
  min-height: 18px;
  margin: 8px 0 -2px;
  color: var(--green-700);
  font-size: 11.5px;
  line-height: 1.4;
}
.sound-status.is-error { color: #8c3541; }
.sound-status--topbar {
  position: fixed;
  z-index: 9;
  right: 20px;
  top: 67px;
  max-width: 330px;
  padding: 7px 10px;
  margin: 0;
  border-radius: 10px;
  background: rgba(255,253,248,.88);
  box-shadow: 0 8px 24px rgba(18,39,31,.09);
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}
.sound-status--topbar:not(:empty) { opacity: 1; }

.card-choice {
  grid-template-rows: auto 48px;
}
.card-choice__label {
  min-height: 44px;
  height: 44px;
  padding: 6px 7px;
  display: grid;
  place-items: center;
  overflow: visible;
  text-wrap: balance;
}
.card-choice__frame {
  box-shadow: 0 17px 34px rgba(18,39,31,.19), 0 0 0 1px rgba(255,255,255,.32);
}
.card-choice__frame::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), inset 0 0 28px rgba(216,185,120,.10), 0 0 0 0 rgba(216,185,120,0);
  transition: box-shadow .28s ease;
}
.card-choice:hover .card-choice__frame::after,
.card-choice:focus-visible .card-choice__frame::after {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.23), inset 0 0 34px rgba(216,185,120,.16), 0 0 30px rgba(216,185,120,.20);
}

.dialog-shell {
  max-width: 1260px;
  border-color: rgba(216,185,120,.46);
  background:
    radial-gradient(circle at 10% 18%, color-mix(in srgb, var(--card-accent) 9%, transparent), transparent 32%),
    linear-gradient(145deg, rgba(255,255,252,.985), rgba(242,247,241,.975));
}
.journey-progress {
  position: sticky;
  top: -30px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 8px;
  margin: -8px 44px 28px 0;
  padding: 10px;
  border: 1px solid rgba(63,83,69,.10);
  border-radius: 17px;
  background: rgba(255,253,248,.88);
  backdrop-filter: blur(13px);
  box-shadow: 0 8px 28px rgba(18,39,31,.07);
}
.journey-progress span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 35px;
  padding: 6px 8px;
  border-radius: 11px;
  color: #879087;
  font-size: 11.5px;
  font-weight: 650;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}
.journey-progress b {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(63,83,69,.18);
  font-size: 10px;
}
.journey-progress span.is-active {
  color: var(--green-900);
  background: linear-gradient(135deg, rgba(216,185,120,.17), rgba(232,238,231,.76));
  box-shadow: inset 0 0 0 1px rgba(196,154,74,.20);
}
.journey-progress span.is-active b,
.journey-progress span.is-complete b {
  color: white;
  background: var(--green-800);
  border-color: var(--green-800);
}
.journey-progress span.is-complete { color: var(--green-700); }

.card-stage-actions {
  width: min(365px, 78vw);
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
.card-stage-actions .button { width: 100%; }
.flip-card {
  width: min(390px, 79vw);
}
.flip-card__face {
  box-shadow: 0 24px 58px rgba(10,28,21,.28), 0 0 0 1px rgba(216,185,120,.56);
}
.flip-card img {
  image-rendering: auto;
}

.message-heading {
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(232,238,231,.54));
  border-color: rgba(196,154,74,.16);
}

.breathing-card {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 18px;
  align-items: center;
  margin: 22px 0 28px;
  padding: 18px;
  border: 1px solid rgba(196,154,74,.28);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(216,185,120,.08), rgba(232,238,231,.62));
}
.breathing-card h3 { margin: 0 0 3px; font-size: 20px; }
.breathing-card p { margin: 0 0 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.breath-orb {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: radial-gradient(circle, rgba(255,255,255,.96), rgba(216,185,120,.23) 48%, rgba(110,127,106,.19));
  box-shadow: 0 0 0 1px rgba(196,154,74,.32), 0 13px 30px rgba(18,39,31,.11);
  font-family: Georgia, serif;
  font-size: 13px;
  transition: transform 4s ease-in-out, box-shadow 4s ease-in-out;
}
.breath-orb.is-inhaling {
  transform: scale(1.20);
  box-shadow: 0 0 0 14px rgba(216,185,120,.08), 0 18px 38px rgba(18,39,31,.13);
}
.breath-orb.is-exhaling {
  transform: scale(.88);
  box-shadow: 0 0 0 2px rgba(216,185,120,.08), 0 8px 22px rgba(18,39,31,.09);
}
.opening-button { margin-top: 18px; }
.orientation-card[hidden] { display: none !important; }
.orientation-card.is-revealing { animation: openingReveal .55s ease both; }

.viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}
.viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,23,18,.88);
  backdrop-filter: blur(14px);
}
.viewer-shell {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100vh - 36px);
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(320px, 1.28fr);
  grid-template-rows: 1fr auto;
  gap: 18px 28px;
  padding: 24px;
  overflow: auto;
  border: 1px solid rgba(216,185,120,.50);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,252,.98), rgba(238,244,237,.97));
  box-shadow: 0 36px 110px rgba(0,0,0,.40);
  animation: dialogReveal .35s ease both;
}
.viewer-close {
  position: absolute;
  z-index: 3;
  right: 14px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(63,83,69,.16);
  background: rgba(255,255,255,.78);
  color: var(--green-900);
  font-size: 25px;
  cursor: pointer;
}
.viewer-heading { padding: 28px 4px 0; align-self: start; }
.viewer-heading h2 { margin-bottom: 20px; }
.viewer-tabs { display: inline-flex; gap: 6px; padding: 4px; border-radius: 999px; background: rgba(232,238,231,.85); }
.viewer-tab {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.viewer-tab.is-active { color: white; background: var(--green-800); box-shadow: 0 5px 16px rgba(18,39,31,.18); }
.viewer-image-wrap {
  grid-row: 1 / span 2;
  grid-column: 2;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 4px;
  border-radius: 18px;
  background: rgba(10,38,28,.94);
  box-shadow: 0 22px 56px rgba(18,39,31,.24);
  overflow: auto;
  touch-action: pinch-zoom;
}
.viewer-image-wrap img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 110px);
  width: auto;
  height: auto;
  border-radius: 12px;
}
.viewer-note {
  align-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.5;
}

@keyframes mistBreathe { 0%,100% { opacity: .45; transform: translate(-50%, -50%) scale(.96); } 50% { opacity: .82; transform: translate(-50%, -50%) scale(1.06); } }
@keyframes spark { 0%,74%,100% { opacity: 0; transform: scale(.4); } 79% { opacity: 1; transform: scale(1.3); } 87% { opacity: .3; transform: scale(.7); } }
@keyframes toastIn { from { opacity: 0; transform: translate(-50%, 8px); } to { opacity: 1; transform: translate(-50%, 0); } }
@keyframes openingReveal { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: none; } }

@media (max-width: 780px) {
  .journey-progress { position: static; margin: -4px 42px 22px 0; grid-template-columns: repeat(4, minmax(62px,1fr)); overflow-x: auto; }
  .journey-progress span { flex-direction: column; gap: 3px; font-size: 10px; min-width: 68px; }
  .card-choice { grid-template-rows: auto 50px; }
  .card-choice__label { min-height: 46px; height: 46px; font-size: 11px; }
  .viewer-shell { grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .viewer-image-wrap { grid-column: 1; grid-row: 2; }
  .viewer-heading { padding-top: 16px; }
  .viewer-image-wrap img { max-height: 68vh; }
  .viewer-note { grid-row: 3; }
}

@media (max-width: 520px) {
  .sound-control--intro { width: 100%; border-radius: 18px; padding: 7px; }
  .sound-control--intro .sound-toggle { width: 100%; }
  .volume-control { width: 100%; justify-content: center; padding-bottom: 4px; }
  .volume-control input { width: min(180px, 48vw); }
  .sound-control--compact .volume-control { display: none; }
  .sound-status--topbar { top: 62px; right: 10px; left: 10px; text-align: center; }
  .journey-progress { margin-right: 36px; padding: 7px; gap: 4px; }
  .journey-progress span { min-width: 60px; }
  .card-stage-actions { width: 100%; }
  .breathing-card { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .viewer { padding: 0; }
  .viewer-shell { min-height: 100vh; max-height: 100vh; border-radius: 0; padding: 18px; }
  .viewer-heading { padding-right: 40px; }
  .viewer-image-wrap img { max-height: 70vh; }
  .toast { bottom: 14px; border-radius: 16px; }
}

@media print {
  .journey-progress, #enlargeCard, .breathing-card, #continueToOpening, #shareCard, .viewer, .sound-status { display: none !important; }
  #orientationCard[hidden] { display: block !important; }
  .flip-card { width: 230px; }
  .flip-card__inner { transform: rotateY(180deg) !important; }
  .flip-card__front { display: none !important; }
  .flip-card__back { display: block !important; transform: none !important; position: static !important; }
}


/* =========================================================
   V0.4 — finition premium
   Cercle V2 restauré · carillons doux V2 · navigation fluide
   ========================================================= */

.intro-logo,
.brand-logo-wrap img,
.wheel-center__logo img,
.threshold-transition__logo img { border-radius: 50%; }

/* Profondeur douce sur le bord droit, sans assombrir la lecture */
.screen--intro::after,
.screen--experience::after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(24vw, 390px);
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(24,56,46,.10));
  mix-blend-mode: multiply;
}

/* La géométrie ronde, équilibrée et lisible de la V2 */
.card-wheel {
  width: min(980px, 90vw);
  aspect-ratio: 1;
}
.card-choice {
  left: 50%;
  top: 50%;
  width: 136px;
  min-height: 218px;
  display: grid;
  grid-template-rows: auto 48px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-382px) rotate(calc(-1 * var(--angle)));
}
.card-choice__frame {
  width: 118px;
  aspect-ratio: 365 / 568;
  display: block;
}
.card-choice__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.card-choice__label {
  position: static;
  width: 136px;
  min-height: 44px;
  height: 44px;
  margin: 7px auto 0;
  padding: 6px 8px;
  display: grid;
  place-items: center;
  line-height: 1.17;
  overflow: visible;
  text-wrap: balance;
}
.card-choice.is-return-highlight .card-choice__frame {
  animation: returnCardGlow 1.65s ease both;
}

/* Retour au cercle visible dès l'ouverture d'une carte */
.dialog-navigation-row {
  position: sticky;
  top: -30px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: -8px 44px 28px 0;
}
.dialog-navigation-row .journey-progress {
  position: static;
  margin: 0;
}
.dialog-back-to-wheel {
  min-height: 48px;
  padding-inline: 18px;
  white-space: nowrap;
  background: rgba(255,253,248,.92);
  border-color: rgba(196,154,74,.38);
  box-shadow: 0 8px 26px rgba(18,39,31,.08);
  backdrop-filter: blur(13px);
}
.dialog-back-to-wheel:hover {
  border-color: rgba(196,154,74,.70);
  box-shadow: 0 12px 28px rgba(18,39,31,.12), 0 0 0 4px rgba(216,185,120,.09);
}
.dialog.is-closing .dialog-shell {
  animation: dialogSoftExit .21s ease both;
}
.dialog.is-closing .dialog-backdrop {
  animation: backdropSoftExit .21s ease both;
}

/* La surbrillance reste précieuse, mais jamais agressive */
.card-choice:hover .card-choice__frame,
.card-choice:focus-visible .card-choice__frame {
  filter: brightness(1.07) saturate(1.035);
  box-shadow:
    0 25px 50px rgba(18,39,31,.27),
    0 0 0 4px rgba(216,185,120,.16),
    0 0 37px rgba(216,185,120,.21);
}

@keyframes returnCardGlow {
  0% { transform: none; box-shadow: 0 17px 34px rgba(18,39,31,.19); }
  35% { transform: translateY(-7px) scale(1.055); box-shadow: 0 24px 48px rgba(18,39,31,.26), 0 0 0 5px rgba(216,185,120,.18), 0 0 40px rgba(216,185,120,.25); }
  100% { transform: none; box-shadow: 0 17px 34px rgba(18,39,31,.19); }
}
@keyframes dialogSoftExit {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(9px) scale(.992); }
}
@keyframes backdropSoftExit {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (max-width: 1100px) and (min-width: 781px) {
  .card-wheel { width: min(820px, 94vw); }
  .card-choice {
    width: 124px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-320px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 102px; }
  .card-choice__label { width: 124px; min-height: 40px; height: 40px; font-size: 10.8px; }
  .wheel-center { width: 166px; height: 166px; }
  .wheel-center__logo { width: 99px; }
  .wheel-center__label { bottom: 10px; }
}

@media (max-width: 780px) {
  .screen--intro::after,
  .screen--experience::after { width: 34vw; opacity: .70; }
  .dialog-navigation-row {
    position: static;
    grid-template-columns: 1fr;
    margin: -4px 42px 22px 0;
  }
  .dialog-back-to-wheel {
    justify-self: start;
    min-height: 43px;
  }
  .dialog-navigation-row .journey-progress {
    grid-template-columns: repeat(4, minmax(62px,1fr));
    overflow-x: auto;
  }
  .card-wheel {
    width: 100%;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 12px;
    margin-top: 30px;
  }
  .wheel-center { display: none; }
  .card-choice {
    position: static;
    width: 100%;
    min-height: 0;
    transform: none;
    grid-template-rows: auto 50px;
  }
  .card-choice__frame { width: min(150px, 100%); margin: 0 auto; }
  .card-choice__label { width: min(160px, 100%); min-height: 46px; height: 46px; }
  .screen--experience.is-entering .card-choice {
    animation: mobileCardArrival .58s cubic-bezier(.2,.72,.2,1) both;
    animation-delay: calc(180ms + (var(--i) * 48ms));
  }
}

@media (max-width: 520px) {
  .card-wheel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dialog-navigation-row { margin-right: 36px; }
  .dialog-back-to-wheel { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .dialog.is-closing .dialog-shell,
  .dialog.is-closing .dialog-backdrop,
  .card-choice.is-return-highlight .card-choice__frame { animation: none !important; }
}

@media print {
  .dialog-navigation-row { display: none !important; }
}

/* =========================================================
   V0.5 — expérience vivante, sobre et prête à publier
   Animation d'accueil · cartes sensibles · continuité sociale
   ========================================================= */

/* Une entrée plus cinématographique, sans surcharger la lecture */
.intro-card {
  --intro-tilt-x: 0deg;
  --intro-tilt-y: 0deg;
  --intro-shift-x: 0px;
  --intro-shift-y: 0px;
  transform:
    perspective(1400px)
    translate3d(var(--intro-shift-x), var(--intro-shift-y), 0)
    rotateX(var(--intro-tilt-x))
    rotateY(var(--intro-tilt-y));
  transform-style: preserve-3d;
  transition: transform .55s cubic-bezier(.2,.75,.2,1), box-shadow .4s ease;
}
.intro-card:hover {
  box-shadow: 0 38px 100px rgba(18,39,31,.17), 0 9px 28px rgba(196,154,74,.11), inset 0 1px rgba(255,255,255,.96);
}
.logo-aura--intro {
  animation: introLogoFloat 8.5s ease-in-out infinite;
  transform-style: preserve-3d;
}
.logo-aura--intro::after {
  content: "";
  position: absolute;
  inset: -9%;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid transparent;
  border-top-color: rgba(196,154,74,.54);
  border-left-color: rgba(216,185,120,.16);
  filter: drop-shadow(0 0 9px rgba(216,185,120,.17));
  animation: introOrbit 20s linear infinite;
}
.intro-logo {
  animation: introLogoLight 7.2s ease-in-out infinite;
}

/* Apparition séquencée des éléments de la première page */
.intro-card > .logo-aura,
.intro-card > .eyebrow,
.intro-card > h1,
.intro-card > .intro-lead,
.intro-card > .opening-question,
.intro-card > .intro-copy,
.intro-card > .intro-actions,
.intro-card > .sound-status,
.intro-card > .microcopy {
  opacity: 0;
  animation: introElementReveal .78s cubic-bezier(.2,.75,.2,1) both;
}
.intro-card > .logo-aura { animation-delay: .06s; }
.intro-card > .eyebrow { animation-delay: .23s; }
.intro-card > h1 { animation-delay: .34s; }
.intro-card > .intro-lead { animation-delay: .47s; }
.intro-card > .opening-question { animation-delay: .60s; }
.intro-card > .intro-copy { animation-delay: .73s; }
.intro-card > .intro-actions { animation-delay: .86s; }
.intro-card > .sound-status { animation-delay: .95s; }
.intro-card > .microcopy { animation-delay: 1.02s; }

.opening-question {
  overflow: hidden;
}
.opening-question::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -25%;
  width: 18%;
  pointer-events: none;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.72), rgba(216,185,120,.13), transparent);
  transform: skewX(-16deg);
  animation: questionSoftSweep 9.5s ease-in-out 2.2s infinite;
}
.button--enter {
  position: relative;
  overflow: hidden;
}
.button--enter::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.18) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: enterButtonSweep 7s ease-in-out 2.8s infinite;
}

/* Le passage entre l'accueil et la roue devient un vrai petit seuil */
.threshold-transition::before,
.threshold-transition::after {
  content: "";
  position: absolute;
  width: min(86vw, 880px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216,185,120,.68), transparent);
  opacity: 0;
  transform: scaleX(.2);
}
.threshold-transition::before { animation: thresholdLine 1.45s ease .12s both; }
.threshold-transition::after { transform: rotate(90deg) scaleX(.2); animation: thresholdLineVertical 1.45s ease .12s both; }

/* Le centre respire, les cartes restent vivantes sans s'agiter */
.wheel-center {
  isolation: isolate;
}
.wheel-center::before,
.wheel-center::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.wheel-center::before {
  inset: -13px;
  z-index: -2;
  border: 1px solid rgba(196,154,74,.24);
  animation: wheelRingBreathe 7.8s ease-in-out infinite;
}
.wheel-center::after {
  inset: -27px;
  z-index: -3;
  border: 1px solid rgba(63,83,69,.10);
  border-top-color: rgba(196,154,74,.42);
  animation: wheelRingTurn 28s linear infinite;
}
.wheel-center__logo {
  animation: wheelLogoFloat 8s ease-in-out infinite;
}
.wheel-center__logo img {
  filter: drop-shadow(0 9px 21px rgba(196,154,74,.13));
  animation: wheelLogoLight 8s ease-in-out infinite;
}

.card-choice { z-index: 1; }
.card-choice:hover,
.card-choice:focus-visible { z-index: 8; }
.card-choice__frame {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 45%;
  --card-lift: 0px;
  --card-scale: 1;
  transform:
    perspective(820px)
    translateY(var(--card-lift))
    scale(var(--card-scale))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  will-change: transform, box-shadow, filter;
}
.card-choice:hover .card-choice__frame,
.card-choice:focus-visible .card-choice__frame {
  --card-lift: -9px;
  --card-scale: 1.072;
  transform:
    perspective(820px)
    translateY(var(--card-lift))
    scale(var(--card-scale))
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
}
.card-choice__frame::after {
  background:
    radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,248,221,.16), transparent 33%);
}
.card-choice:not(:hover):not(:focus-visible) .card-choice__frame::after {
  animation: cardQuietGlow 13.8s ease-in-out infinite;
  animation-delay: calc(1.25s + (var(--i) * .72s));
}
.card-choice:active .card-choice__frame {
  --card-lift: -3px;
  --card-scale: 1.035;
  transition-duration: .11s;
}
.card-choice__label {
  transition: color .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.card-choice:hover .card-choice__label,
.card-choice:focus-visible .card-choice__label {
  background: rgba(255,253,248,.96);
  box-shadow: 0 9px 24px rgba(18,39,31,.11), 0 0 0 3px rgba(216,185,120,.08);
}

/* Continuité vers les offres et Instagram, hiérarchisée sans effet publicitaire */
.social-continuity {
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid rgba(63,83,69,.10);
}
.social-continuity__line {
  display: block;
  width: 46px;
  height: 1px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.social-continuity p {
  margin: 0 0 11px;
  color: var(--muted);
  font-size: 13px;
}
.instagram-link {
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  column-gap: 9px;
  align-items: center;
  color: var(--green-800);
  text-decoration: none;
  font-weight: 650;
  transition: color .22s ease, transform .22s ease;
}
.instagram-link:hover { color: var(--green-950); transform: translateX(3px); }
.instagram-link__icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  color: var(--gold);
  border: 1px solid rgba(196,154,74,.42);
  background: rgba(255,253,248,.70);
  font-size: 19px;
}
.instagram-link small {
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
}
.trace-actions {
  align-items: stretch;
}
.trace-actions .button {
  flex: 1 1 245px;
}

/* Une première page complète même sur un écran d'ordinateur peu haut */
@media (min-width: 781px) and (max-height: 900px) {
  .screen--intro { padding: 14px 20px; }
  .intro-card {
    width: min(880px, 96vw);
    padding: 18px 34px 19px;
  }
  .logo-aura--intro { width: 124px; margin-bottom: 1px; }
  .intro-card > .eyebrow { font-size: 10px; }
  h1 { margin: 3px 0 8px; font-size: clamp(43px, 5.3vw, 57px); line-height: .98; }
  .intro-lead { margin: 0 0 10px; font-size: 17px; }
  .opening-question { padding: 11px 24px; }
  .opening-question__line { margin-bottom: 8px; }
  .opening-question p { font-size: 20px; line-height: 1.30; }
  .intro-copy { margin-top: 9px; font-size: 13px; line-height: 1.48; }
  .intro-actions { margin-top: 12px; }
  .button--enter { min-height: 44px; }
  .sound-toggle { min-height: 40px; }
  .microcopy { margin-top: 8px; font-size: 10.5px; }
}

/* Le cercle reste plus présent sur les écrans larges mais peu hauts. */
@media (min-width: 1101px) and (max-height: 900px) {
  .topbar { min-height: 66px; padding-block: 8px; }
  .brand-logo-wrap { width: 42px; height: 42px; }
  .wheel-section { padding-top: 22px; }
  .section-heading { margin-bottom: 4px; }
  .section-heading h2 { font-size: 34px; margin-block: 4px; }
  .section-heading p:last-child { margin: 0; font-size: 12px; }
  .card-wheel { width: min(850px, 87vw); }
  .card-choice {
    width: 126px;
    min-height: 198px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-328px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 104px; }
  .card-choice__label { width: 126px; min-height: 40px; height: 40px; font-size: 10.8px; }
  .wheel-center { width: 172px; height: 172px; }
  .wheel-center__logo { width: 102px; }
  .wheel-center__label { bottom: 10px; }
  .wheel-hint { margin-top: -2px; }
  @keyframes cardArrival {
    from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-245px) rotate(calc(-1 * var(--angle))) scale(.72); filter: blur(3px); }
    to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-328px) rotate(calc(-1 * var(--angle))) scale(1); filter: none; }
  }
}

@keyframes introElementReveal {
  from { opacity: 0; transform: translateY(13px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@keyframes introLogoFloat {
  0%,100% { transform: translateY(0) rotate(.001deg); }
  50% { transform: translateY(-6px) rotate(.6deg); }
}
@keyframes introOrbit { to { transform: rotate(360deg); } }
@keyframes introLogoLight {
  0%,100% { filter: drop-shadow(0 9px 22px rgba(196,154,74,.15)) brightness(1); }
  50% { filter: drop-shadow(0 13px 30px rgba(196,154,74,.24)) brightness(1.035); }
}
@keyframes questionSoftSweep {
  0%,72%,100% { left: -28%; opacity: 0; }
  77% { opacity: .72; }
  90% { left: 116%; opacity: .42; }
  94% { left: 116%; opacity: 0; }
}
@keyframes enterButtonSweep {
  0%,69%,100% { transform: translateX(-125%); opacity: 0; }
  74% { opacity: .85; }
  87% { transform: translateX(125%); opacity: .25; }
  90% { transform: translateX(125%); opacity: 0; }
}
@keyframes thresholdLine {
  0% { opacity: 0; transform: scaleX(.15); }
  42% { opacity: .68; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(.62); }
}
@keyframes thresholdLineVertical {
  0% { opacity: 0; transform: rotate(90deg) scaleX(.15); }
  42% { opacity: .34; transform: rotate(90deg) scaleX(1); }
  100% { opacity: 0; transform: rotate(90deg) scaleX(.62); }
}
@keyframes wheelRingBreathe {
  0%,100% { opacity: .42; transform: scale(.98); }
  50% { opacity: .85; transform: scale(1.035); }
}
@keyframes wheelRingTurn { to { transform: rotate(360deg); } }
@keyframes wheelLogoFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes wheelLogoLight {
  0%,100% { filter: drop-shadow(0 9px 21px rgba(196,154,74,.13)) brightness(.995); }
  50% { filter: drop-shadow(0 12px 29px rgba(196,154,74,.23)) brightness(1.035); }
}
@keyframes cardQuietGlow {
  0%,7%,100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), inset 0 0 28px rgba(216,185,120,.10), 0 0 0 rgba(216,185,120,0); opacity: .96; }
  2.5% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.20), inset 0 0 34px rgba(216,185,120,.14), 0 0 24px rgba(216,185,120,.14); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .intro-card,
  .logo-aura--intro,
  .intro-logo,
  .wheel-center__logo,
  .wheel-center__logo img { transform: none !important; }
  .intro-card > .logo-aura,
  .intro-card > .eyebrow,
  .intro-card > h1,
  .intro-card > .intro-lead,
  .intro-card > .opening-question,
  .intro-card > .intro-copy,
  .intro-card > .intro-actions,
  .intro-card > .sound-status,
  .intro-card > .microcopy { opacity: 1 !important; }
  .card-choice__frame { --tilt-x: 0deg !important; --tilt-y: 0deg !important; }
}

@media print {
  .social-continuity, #shareExperience { display: none !important; }
}

/* Conserver à la fois l'apparition initiale et la respiration du logo */
.intro-card > .logo-aura--intro {
  animation-name: introElementReveal, introLogoFloat;
  animation-duration: .78s, 8.5s;
  animation-timing-function: cubic-bezier(.2,.75,.2,1), ease-in-out;
  animation-delay: .06s, 1.05s;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: both, none;
}

/* Ajustement final de la roue : davantage d'air entre les douze cartes */
@media (min-width: 781px) {
  .card-choice { width: 126px; min-height: 194px; grid-template-rows: auto 44px; }
  .card-choice__frame { width: 96px; }
  .card-choice__label { width: 126px; min-height: 40px; height: 40px; font-size: 10.7px; margin-top: 6px; }
}

@media (min-width: 1101px) and (max-height: 900px) {
  .logo-aura--intro { width: 145px; }
  .card-choice {
    width: 110px;
    min-height: 166px;
    grid-template-rows: auto 39px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-328px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 78px; }
  .card-choice__label { width: 110px; min-height: 36px; height: 36px; font-size: 9.9px; margin-top: 5px; padding: 5px 6px; }
}


/* =========================================================
   V0.6 — candidate de publication
   Échelle plus éditoriale · roue réellement adaptative ·
   animations premium, calmes et accessibles
   ========================================================= */

/* L'accueil respire davantage : le logo et le titre restent forts sans
   pousser la question et les actions sous la ligne de flottaison. */
@media (min-width: 781px) {
  .screen--intro {
    min-height: 100svh;
    padding: clamp(16px, 2.5vh, 30px) 24px;
  }
  .intro-card {
    width: min(860px, 94vw);
    padding: clamp(24px, 3.5vh, 42px) clamp(28px, 4vw, 50px);
  }
  .logo-aura--intro {
    width: clamp(132px, 14vw, 158px);
    margin-bottom: 4px;
  }
  h1 {
    margin: 5px 0 13px;
    font-size: clamp(44px, 5.1vw, 66px);
    line-height: 1;
  }
  .intro-lead {
    margin: 0 0 15px;
    font-size: clamp(17px, 1.6vw, 20px);
  }
  .opening-question {
    max-width: 690px;
    padding: 15px clamp(20px, 3vw, 31px);
  }
  .opening-question p {
    font-size: clamp(20px, 2.25vw, 24px);
    line-height: 1.36;
  }
  .intro-copy {
    max-width: 690px;
    margin-top: 13px;
    font-size: 14px;
    line-height: 1.58;
  }
  .intro-actions { margin-top: 16px; }
  .microcopy { margin-top: 11px; }
}

/* Une lumière très lente traverse la page d'ouverture ; elle reste presque
   imperceptible pour préserver la lecture. */
.screen--intro::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: -22%;
  pointer-events: none;
  background:
    conic-gradient(from 210deg at 50% 48%, transparent 0 31%, rgba(216,185,120,.055) 38%, transparent 46% 100%);
  transform-origin: 50% 48%;
  animation: introAtmosphereTurn 46s linear infinite;
}
.intro-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 17%;
  right: 17%;
  top: 31%;
  height: 1px;
  opacity: .26;
  background: linear-gradient(90deg, transparent, rgba(196,154,74,.48), transparent);
  transform: scaleX(.72);
  animation: introThreadBreathe 8.8s ease-in-out infinite;
}
.logo-spark--one { animation-duration: 5.8s; }
.logo-spark--two { animation-duration: 6.9s; }

/* La roue s'adapte à la hauteur réelle de l'écran : aucune carte ne doit être
   coupée sur un ordinateur standard. Le rayon précis est calculé dans app.js. */
.card-wheel {
  width: min(900px, 88vw, calc(100svh - 235px));
  min-width: 520px;
  --wheel-radius-y: -318px;
  --wheel-arrival-y: -229px;
}
.card-choice {
  width: 120px;
  min-height: 178px;
  grid-template-rows: auto 42px;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--wheel-radius-y)) rotate(calc(-1 * var(--angle)));
}
.card-choice__frame { width: 88px; }
.card-choice__label {
  width: 120px;
  min-height: 40px;
  height: 40px;
  margin-top: 6px;
  padding: 5px 7px;
  font-size: 10.5px;
}
.screen--experience.is-entering .card-choice {
  animation-name: cardArrivalV6;
}
.card-choice:not(:hover):not(:focus-visible):not(.is-selecting) .card-choice__frame img {
  animation: cardImageBreathe 11.5s ease-in-out infinite;
  animation-delay: calc(1.1s + (var(--i) * .43s));
}
.card-choice.is-selecting { z-index: 12; }
.card-choice.is-selecting .card-choice__frame {
  animation: cardSelectPulse .285s cubic-bezier(.2,.75,.2,1) both;
}
.card-choice.is-selecting .card-choice__label {
  color: var(--green-950);
  border-color: rgba(196,154,74,.55);
  box-shadow: 0 10px 25px rgba(18,39,31,.12), 0 0 0 4px rgba(216,185,120,.10);
}

/* Le centre est légèrement plus lumineux sans devenir un objet clignotant. */
.wheel-center {
  width: 176px;
  height: 176px;
  box-shadow:
    0 20px 58px rgba(24,56,46,.13),
    0 0 48px rgba(216,185,120,.10),
    inset 0 1px rgba(255,255,255,.92);
}
.wheel-center__logo { width: 104px; }
.wheel-center__label { bottom: 11px; }
.wheel-center::after { animation-duration: 34s; }

/* Les liens internes poursuivent le parcours dans le même onglet. Les liens
   externes configurés par app.js annoncent leur ouverture dans un nouvel onglet. */
.orientation-card .button:focus-visible,
.instagram-link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(196,154,74,.38);
  outline-offset: 4px;
}

@keyframes introAtmosphereTurn {
  to { transform: rotate(360deg); }
}
@keyframes introThreadBreathe {
  0%,100% { opacity: .17; transform: scaleX(.62); }
  50% { opacity: .38; transform: scaleX(1); }
}
@keyframes cardArrivalV6 {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--wheel-arrival-y)) rotate(calc(-1 * var(--angle))) scale(.76);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--wheel-radius-y)) rotate(calc(-1 * var(--angle))) scale(1);
    filter: none;
  }
}
@keyframes cardImageBreathe {
  0%,100% { transform: scale(1); filter: brightness(1) saturate(1); }
  50% { transform: scale(1.008); filter: brightness(1.018) saturate(1.012); }
}
@keyframes cardSelectPulse {
  0% { transform: perspective(820px) translateY(0) scale(1); }
  62% { transform: perspective(820px) translateY(-12px) scale(1.095); filter: brightness(1.09); box-shadow: 0 26px 54px rgba(18,39,31,.27), 0 0 0 5px rgba(216,185,120,.20), 0 0 45px rgba(216,185,120,.26); }
  100% { transform: perspective(820px) translateY(-7px) scale(1.065); filter: brightness(1.055); }
}

/* Écrans bas : conserver le cercle sans sacrifier les noms. */
@media (min-width: 781px) and (max-height: 820px) {
  .topbar { min-height: 58px; padding-block: 6px; }
  .wheel-section { padding-top: 14px; }
  .section-heading { margin-bottom: 2px; }
  .section-heading h2 { font-size: 28px; margin-block: 2px; }
  .section-heading p:last-child, .wheel-hint { font-size: 11px; }
  .card-wheel { width: min(650px, 82vw, calc(100svh - 185px)); min-width: 460px; }
  .card-choice { width: 94px; min-height: 140px; grid-template-rows: auto 34px; }
  .card-choice__frame { width: 64px; }
  .card-choice__label { width: 94px; min-height: 33px; height: 33px; margin-top: 4px; font-size: 9px; padding: 4px 5px; }
  .wheel-center { width: 138px; height: 138px; }
  .wheel-center__logo { width: 80px; }
  .wheel-center__label { bottom: 7px; font-size: 8.5px; }
}

/* Sur mobile, la grille prévaut : aucune géométrie circulaire forcée. */
@media (max-width: 780px) {
  .screen--intro::before { animation-duration: 60s; }
  .intro-card::after { top: 25%; }
  .card-wheel { width: 100%; min-width: 0; }
  .card-choice {
    width: 100%;
    min-height: 0;
    transform: none;
    grid-template-rows: auto 46px;
  }
  .card-choice__frame { width: min(150px, 100%); }
  .card-choice__label { width: min(160px, 100%); min-height: 44px; height: 44px; font-size: 11px; }
  .card-choice:not(:hover):not(:focus-visible):not(.is-selecting) .card-choice__frame img { animation-duration: 14s; }
}

@media (prefers-reduced-motion: reduce) {
  .screen--intro::before,
  .intro-card::after,
  .card-choice__frame img,
  .card-choice.is-selecting .card-choice__frame {
    animation: none !important;
  }
}

/* V0.6.1 — réglage de cadrage après tests 1920×1080 et mobile */
@media (min-width: 781px) {
  .wheel-section {
    padding: 20px 20px 14px;
  }
  .section-heading {
    max-width: 760px;
    margin-bottom: 6px;
  }
  .section-heading h2 {
    margin: 4px 0 6px;
    font-size: clamp(30px, 3.2vw, 42px);
  }
  .section-heading p:last-child {
    margin: 3px 0 0;
    font-size: 13px;
    line-height: 1.45;
  }
  .card-wheel {
    width: min(820px, 86vw, calc(100svh - 275px));
  }
  .wheel-hint {
    margin-top: 0;
    font-size: 12px;
  }
}

@media (max-width: 780px) {
  .screen--intro {
    min-height: 100svh;
    padding: 12px;
    align-items: center;
  }
  .intro-card {
    width: 100%;
    padding: 20px 17px 18px;
    border-radius: 24px;
  }
  .logo-aura--intro {
    width: 104px;
    margin-bottom: 0;
  }
  .intro-card > .eyebrow {
    font-size: 9px;
    letter-spacing: .14em;
  }
  h1 {
    margin: 4px 0 9px;
    font-size: clamp(37px, 11vw, 46px);
    line-height: .98;
  }
  .intro-lead {
    margin: 0 0 11px;
    font-size: 16px;
    line-height: 1.35;
  }
  .opening-question {
    padding: 12px 14px;
    border-radius: 16px;
  }
  .opening-question__line { margin-bottom: 8px; }
  .opening-question p {
    font-size: 18px;
    line-height: 1.34;
  }
  .intro-copy {
    margin-top: 10px;
    font-size: 12.5px;
    line-height: 1.48;
  }
  .intro-actions {
    margin-top: 12px;
    gap: 9px;
  }
  .button--enter { min-height: 46px; }
  .sound-control--intro { gap: 7px; }
  .sound-toggle { min-height: 42px; }
  .microcopy {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.4;
  }
}


/* =========================================================
   V0.6.1 — CORRECTION DÉFINITIVE DE LA ROUE
   Géométrie stable et aérée de la V0.5, sans calcul dynamique.
   ========================================================= */

@media (min-width: 1101px) and (min-height: 901px) {
  .card-wheel {
    width: min(980px, 90vw);
    min-width: 0;
    aspect-ratio: 1;
  }
  .card-choice {
    width: 126px;
    min-height: 194px;
    display: grid;
    grid-template-rows: auto 44px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-382px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 96px; }
  .card-choice__label {
    position: static;
    width: 126px;
    min-height: 40px;
    height: 40px;
    margin: 6px auto 0;
    padding: 5px 7px;
    transform: none;
    font-size: 10.7px;
  }
  .screen--experience.is-entering .card-choice {
    animation-name: cardArrival;
  }
  .card-choice { --gold-thread-length: 274px; }
}

@media (min-width: 1101px) and (max-height: 900px) {
  .card-wheel {
    width: min(850px, 87vw);
    min-width: 0;
    aspect-ratio: 1;
  }
  .card-choice {
    width: 110px;
    min-height: 166px;
    display: grid;
    grid-template-rows: auto 39px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-328px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 78px; }
  .card-choice__label {
    position: static;
    width: 110px;
    min-height: 36px;
    height: 36px;
    margin: 5px auto 0;
    padding: 5px 6px;
    transform: none;
    font-size: 9.9px;
  }
  .screen--experience.is-entering .card-choice {
    animation-name: cardArrivalV061Low;
  }
  .card-choice { --gold-thread-length: 229px; }
}

@media (min-width: 781px) and (max-width: 1100px) {
  .card-wheel {
    width: min(820px, 94vw);
    min-width: 0;
    aspect-ratio: 1;
  }
  .card-choice {
    width: 124px;
    min-height: 188px;
    display: grid;
    grid-template-rows: auto 42px;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-320px) rotate(calc(-1 * var(--angle)));
  }
  .card-choice__frame { width: 102px; }
  .card-choice__label {
    position: static;
    width: 124px;
    min-height: 40px;
    height: 40px;
    margin: 6px auto 0;
    padding: 5px 7px;
    transform: none;
    font-size: 10.8px;
  }
  .screen--experience.is-entering .card-choice {
    animation-name: cardArrivalV061Medium;
  }
  .card-choice { --gold-thread-length: 220px; }
}

/* Le cadeau : un fin fil d'or relie, au survol, la carte au centre du seuil.
   Il guide sans influencer le choix et disparaît aussitôt que le regard s'éloigne. */
@media (min-width: 781px) and (pointer: fine) {
  .card-choice::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 45%;
    width: var(--gold-thread-length, 250px);
    height: 1px;
    pointer-events: none;
    opacity: 0;
    transform-origin: 0 50%;
    transform: rotate(calc(var(--angle) + 90deg)) scaleX(.18);
    background: linear-gradient(90deg, rgba(216,185,120,.68), rgba(196,154,74,.25) 58%, rgba(196,154,74,0));
    filter: drop-shadow(0 0 5px rgba(216,185,120,.20));
    transition: opacity .28s ease, transform .58s cubic-bezier(.2,.72,.2,1);
  }
  .card-choice::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: calc(50% - 2px);
    top: calc(45% - 2px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    background: rgba(255,247,211,.98);
    box-shadow: 0 0 9px rgba(216,185,120,.76), 0 0 18px rgba(216,185,120,.30);
  }
  .card-choice:hover::before,
  .card-choice:focus-visible::before {
    opacity: .72;
    transform: rotate(calc(var(--angle) + 90deg)) scaleX(1);
  }
  .card-choice:hover::after,
  .card-choice:focus-visible::after {
    animation: goldenThreadSpark 1.35s cubic-bezier(.2,.65,.2,1) both;
  }
}

@media (max-width: 780px) {
  .card-wheel {
    width: 100%;
    min-width: 0;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 12px;
    margin-top: 30px;
  }
  .wheel-center { display: none; }
  .card-choice {
    position: static;
    width: 100%;
    min-height: 0;
    height: auto;
    display: grid;
    grid-template-rows: auto 46px;
    transform: none;
  }
  .card-choice__frame { width: min(150px, 100%); margin: 0 auto; }
  .card-choice__label {
    position: static;
    width: min(160px, 100%);
    min-height: 44px;
    height: 44px;
    margin: 6px auto 0;
    transform: none;
    font-size: 11px;
  }
  .screen--experience.is-entering .card-choice {
    animation-name: mobileCardArrival;
  }
}

@keyframes cardArrivalV061Low {
  from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-245px) rotate(calc(-1 * var(--angle))) scale(.72); filter: blur(3px); }
  to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-328px) rotate(calc(-1 * var(--angle))) scale(1); filter: none; }
}
@keyframes cardArrivalV061Medium {
  from { opacity: 0; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-238px) rotate(calc(-1 * var(--angle))) scale(.72); filter: blur(3px); }
  to { opacity: 1; transform: translate(-50%, -50%) rotate(var(--angle)) translateY(-320px) rotate(calc(-1 * var(--angle))) scale(1); filter: none; }
}
@keyframes goldenThreadSpark {
  0% { opacity: 0; transform: rotate(calc(var(--angle) + 90deg)) translateX(18px) scale(.55); }
  18% { opacity: .95; }
  78% { opacity: .72; }
  100% { opacity: 0; transform: rotate(calc(var(--angle) + 90deg)) translateX(var(--gold-thread-length, 250px)) scale(.18); }
}

@media (prefers-reduced-motion: reduce) {
  .card-choice::before,
  .card-choice::after { display: none !important; }
}

/* =========================================================
   V0.6.2 — CANDIDATE AU LANCEMENT
   Plus d'immersion vécue, moins de mouvement décoratif.
   ========================================================= */

/* Entrée calme : seule l'étoile scintille. */
.logo-aura--intro,
.intro-logo,
.ambient-orb,
.screen--intro::before,
.intro-card::after,
.logo-shine::after {
  animation: none !important;
}
.logo-aura--intro::after { display: none !important; }
.intro-card {
  transform: none !important;
  transition: box-shadow .4s ease, opacity .4s ease !important;
}
.intro-card:hover { transform: none !important; }
.logo-aura--intro::before {
  animation: none !important;
  opacity: .72;
}
/* Les deux petites étoiles restent le seul mouvement continu de l'accueil. */
.logo-spark--one { animation: spark 6.2s ease-in-out 1.1s infinite !important; }
.logo-spark--two { animation: spark 7.4s ease-in-out 3.2s infinite !important; }

.opening-question--guided { padding-block: 17px; }
.opening-question--guided > p { font-family: inherit; }
.opening-question__kicker {
  margin: 0 0 9px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.opening-question__guidance {
  margin: 0 auto 13px !important;
  max-width: 570px;
  color: #59645d !important;
  font-size: 13.5px !important;
  line-height: 1.62 !important;
}
.opening-question__question {
  margin: 0 !important;
  color: var(--green-900) !important;
  font-family: Georgia, serif !important;
  font-size: clamp(20px, 2.8vw, 25px) !important;
  line-height: 1.38 !important;
}
.opening-question__soft {
  margin: 10px 0 0 !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-style: italic;
}
.opening-question::after { display: none !important; }

/* Écran d'intention : quatre mots d'abord. Le sens n'apparaît qu'au choix. */
.screen--intent {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 28px 20px;
  position: relative;
  overflow: hidden;
  transition: opacity .43s ease, transform .43s ease, filter .43s ease;
}
.screen--intent.is-leaving {
  opacity: 0;
  transform: scale(.99);
  filter: blur(4px);
}
.intent-shell {
  width: min(900px, 100%);
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
  border: 1px solid rgba(196,154,74,.34);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,252,.91), rgba(239,246,239,.84));
  box-shadow: 0 34px 92px rgba(18,39,31,.14), inset 0 1px rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  animation: intentShellIn .72s cubic-bezier(.2,.75,.2,1) both;
}
.intent-star {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--gold);
  font-size: 24px;
  text-shadow: 0 0 18px rgba(216,185,120,.36);
  animation: intentStar 5.8s ease-in-out infinite;
}
.intent-shell h2 {
  max-width: 760px;
  margin: 8px auto 8px;
  font-size: clamp(32px, 4.8vw, 52px);
  color: var(--green-900);
}
.intent-intro {
  max-width: 620px;
  margin: 0 auto 27px;
  color: var(--muted);
}
.intent-choices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto;
}
.intent-choice {
  min-height: 92px;
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px 14px;
  border: 1px solid rgba(63,83,69,.16);
  border-radius: 20px;
  background: rgba(255,253,248,.68);
  color: var(--green-900);
  cursor: pointer;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease, opacity .28s ease;
}
.intent-choice::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 20%, rgba(216,185,120,.20), transparent 58%);
  transition: opacity .28s ease;
}
.intent-choice:hover,
.intent-choice:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(196,154,74,.54);
  box-shadow: 0 15px 34px rgba(18,39,31,.10);
}
.intent-choice:hover::before,
.intent-choice:focus-visible::before,
.intent-choice.is-selected::before { opacity: 1; }
.intent-choice__title {
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  letter-spacing: .02em;
}
.intent-choice__description {
  position: relative;
  z-index: 1;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  color: #536057;
  font-size: 13px;
  line-height: 1.5;
  transform: translateY(5px);
  transition: max-height .45s ease, opacity .34s ease, transform .34s ease, margin-top .34s ease;
}
.intent-choice.is-selected {
  min-height: 126px;
  transform: translateY(-4px) scale(1.018);
  border-color: rgba(196,154,74,.72);
  background: linear-gradient(145deg, rgba(255,253,248,.96), rgba(236,242,234,.92));
  box-shadow: 0 20px 46px rgba(18,39,31,.12), 0 0 0 4px rgba(216,185,120,.09);
}
.intent-choice.is-selected .intent-choice__description {
  max-height: 80px;
  margin-top: 9px;
  opacity: 1;
  transform: translateY(0);
}
.intent-choice.is-muted { opacity: .36; transform: scale(.985); }
.intent-choice:disabled { cursor: default; }
.intent-confirmation {
  margin: 22px auto 0;
  max-width: 600px;
  animation: reveal .45s ease both;
}
.intent-confirmation__line {
  display: block;
  width: 58px;
  height: 1px;
  margin: 0 auto 9px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.intent-confirmation p { margin: 0; color: var(--muted); font-size: 13px; }
.intent-skip {
  margin-top: 18px;
  padding: 7px 10px;
  border: 0;
  border-bottom: 1px solid rgba(63,83,69,.18);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}
.intent-skip:hover { color: var(--green-900); border-bottom-color: rgba(196,154,74,.58); }

.wheel-intention {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 10px 0 0 !important;
  padding: 5px 13px;
  border: 1px solid rgba(196,154,74,.28);
  border-radius: 999px;
  background: rgba(255,253,248,.62);
  color: var(--green-800) !important;
  font-size: 11px !important;
  letter-spacing: .04em;
}

/* La roue reste stable : animation uniquement à l'arrivée et au survol. */
.card-choice:not(:hover):not(:focus-visible):not(.is-selecting) .card-choice__frame img,
.card-choice:not(:hover):not(:focus-visible) .card-choice__frame::after,
.wheel-center::before,
.wheel-center::after,
.wheel-center__logo,
.wheel-center__logo img {
  animation: none !important;
}
.wheel-center::after { border-top-color: rgba(63,83,69,.10); }

.card-context-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.selected-intent-pill {
  margin: 0;
  padding: 5px 10px;
  border: 1px solid rgba(196,154,74,.32);
  border-radius: 999px;
  background: rgba(216,185,120,.08);
  color: var(--green-800);
  font-size: 11px;
}

.trace-input-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.trace-field { display: grid; gap: 7px; text-align: left; }
.trace-field span { color: var(--green-900); font-size: 12px; font-weight: 700; }
.trace-field input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(63,83,69,.22);
  border-radius: 13px;
  background: rgba(255,255,255,.92);
  color: var(--ink);
  outline: none;
  transition: border-color .22s ease, box-shadow .22s ease;
}
.trace-field input:focus {
  border-color: rgba(196,154,74,.66);
  box-shadow: 0 0 0 4px rgba(216,185,120,.10);
}
.personal-trace {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(196,154,74,.44);
  border-radius: 21px;
  background:
    radial-gradient(circle at 100% 0%, rgba(216,185,120,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,253,248,.93), rgba(235,242,234,.72));
  box-shadow: 0 18px 46px rgba(18,39,31,.08);
  animation: traceReveal .62s cubic-bezier(.2,.75,.2,1) both;
}
.personal-trace h3 { margin-bottom: 17px; color: var(--green-900); }
.personal-trace__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.personal-trace__grid > div {
  min-height: 86px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(63,83,69,.09);
}
.personal-trace__grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.personal-trace__grid strong {
  display: block;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}
.personal-trace__wide { grid-column: 1 / -1; }
.personal-trace__bridge {
  margin: 17px 0;
  padding: 13px 15px;
  border-left: 2px solid var(--gold);
  color: #536057;
  font-size: 13px;
  line-height: 1.65;
}
.cta-stack { margin-top: 17px; }
.cta-stack > .button { min-width: min(100%, 360px); }
.cta-row--secondary { margin-top: 10px; }
.cta-row--secondary .button { font-size: 13px; }

@keyframes intentShellIn {
  from { opacity: 0; transform: translateY(12px) scale(.99); }
  to { opacity: 1; transform: none; }
}
@keyframes intentStar {
  0%, 72%, 100% { opacity: .42; transform: scale(.88); }
  82% { opacity: 1; transform: scale(1.16); }
  90% { opacity: .62; transform: scale(.96); }
}
@keyframes traceReveal {
  from { opacity: 0; transform: translateY(14px); filter: blur(2px); }
  to { opacity: 1; transform: none; filter: none; }
}

@media (max-width: 780px) {
  .screen--intent { padding: 14px 12px; }
  .intent-shell { padding: 25px 16px 22px; border-radius: 24px; }
  .intent-shell h2 { font-size: clamp(31px, 9vw, 42px); line-height: 1.04; }
  .intent-intro { margin-bottom: 20px; font-size: 13px; }
  .intent-choices { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .intent-choice { min-height: 80px; padding: 13px 8px; border-radius: 17px; }
  .intent-choice__title { font-size: 22px; }
  .intent-choice.is-selected { min-height: 112px; }
  .trace-input-grid, .personal-trace__grid { grid-template-columns: 1fr; }
  .personal-trace__wide { grid-column: auto; }
  .cta-row--secondary { flex-direction: column; }
}

@media (max-width: 520px) {
  .opening-question--guided { padding: 11px 12px; }
  .opening-question__guidance { font-size: 11.6px !important; line-height: 1.48 !important; }
  .opening-question__question { font-size: 17.2px !important; }
  .opening-question__soft { font-size: 10.5px !important; }
  .intent-star { margin-bottom: 7px; }
  .intent-shell > .eyebrow { font-size: 9px; }
  .intent-choice__description { font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .intent-star, .personal-trace, .intent-shell { animation: none !important; }
}

@media print {
  #intentScreen { display: none !important; }
  #personalTrace[hidden] { display: block !important; }
  .personal-trace { box-shadow: none !important; }
}


/* =========================================================
   V0.6.2.1 — corrections de validation
   Logo d'accueil restauré · intentions différenciées ·
   recommandation d'atelier prioritaire
   ========================================================= */

/* Correctif : en V0.6.2 l'animation de révélation avait été neutralisée
   alors que l'opacité initiale restait à 0. Le logo demeure calme, visible,
   et seules ses petites étoiles scintillent. */
.intro-card > .logo-aura--intro,
.logo-aura--intro,
.intro-logo {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}
.logo-aura--intro::before {
  opacity: .72 !important;
  animation: none !important;
}
.logo-shine::after { animation: none !important; opacity: 0 !important; }
.logo-spark--one { animation: spark 6.2s ease-in-out 1.1s infinite !important; }
.logo-spark--two { animation: spark 7.4s ease-in-out 3.2s infinite !important; }

/* Une couleur propre à chaque intention sélectionnée. Les teintes restent
   volontairement sourdes afin de préserver l'identité premium de L'Orée. */
.intent-choice[data-intent="clarifier"].is-selected {
  border-color: rgba(79,108,142,.62);
  background: linear-gradient(145deg, rgba(247,250,253,.98), rgba(218,229,240,.94));
  box-shadow: 0 20px 46px rgba(52,77,105,.14), 0 0 0 4px rgba(110,139,169,.09);
}
.intent-choice[data-intent="clarifier"].is-selected .intent-choice__title { color: #385571; }
.intent-choice[data-intent="ressentir"].is-selected {
  border-color: rgba(160,126,79,.60);
  background: linear-gradient(145deg, rgba(255,252,246,.98), rgba(239,228,204,.94));
  box-shadow: 0 20px 46px rgba(112,84,45,.12), 0 0 0 4px rgba(191,155,96,.08);
}
.intent-choice[data-intent="ressentir"].is-selected .intent-choice__title { color: #705832; }
.intent-choice[data-intent="traverser"].is-selected {
  border-color: rgba(91,91,126,.60);
  background: linear-gradient(145deg, rgba(249,249,253,.98), rgba(224,224,238,.94));
  box-shadow: 0 20px 46px rgba(63,61,92,.13), 0 0 0 4px rgba(116,112,151,.08);
}
.intent-choice[data-intent="traverser"].is-selected .intent-choice__title { color: #4f4d70; }
.intent-choice[data-intent="ouvrir"].is-selected {
  border-color: rgba(93,126,83,.62);
  background: linear-gradient(145deg, rgba(250,253,248,.98), rgba(221,234,215,.95));
  box-shadow: 0 20px 46px rgba(60,90,53,.13), 0 0 0 4px rgba(116,149,105,.09);
}
.intent-choice[data-intent="ouvrir"].is-selected .intent-choice__title { color: #496b42; }
.intent-choice.is-selected::after {
  content: "✓";
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  color: currentColor;
  font-size: 12px;
  box-shadow: 0 3px 12px rgba(18,39,31,.08);
}

/* L'atelier recommandé est désormais la destination visuelle principale.
   Les alternatives n'apparaissent qu'après lui. */
.orientation-card {
  background: linear-gradient(135deg, rgba(216,185,120,.09), rgba(232,236,228,.46));
}
.recommended-workshop-card {
  position: relative;
  margin-top: 14px;
  padding: clamp(22px, 3vw, 31px);
  overflow: hidden;
  border: 1px solid rgba(196,154,74,.48);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 7%, rgba(216,185,120,.16), transparent 32%),
    linear-gradient(145deg, rgba(255,254,250,.96), rgba(235,242,234,.84));
  box-shadow: 0 20px 54px rgba(18,39,31,.09), inset 0 1px rgba(255,255,255,.95);
}
.recommended-workshop-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.recommended-workshop-card__kicker {
  margin: 0 0 8px !important;
  color: var(--gold) !important;
  font-size: 10px !important;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.recommended-workshop-card h3 {
  margin: 2px 0 9px;
  color: var(--green-900);
  font-size: clamp(28px, 3.5vw, 39px);
}
.recommended-workshop-card #workshopReason {
  max-width: 760px;
  margin: 0 0 18px;
  color: #4f5c54;
  font-size: 15px;
  line-height: 1.65;
}
.recommended-workshop-card__cta {
  min-width: min(100%, 390px);
  box-shadow: 0 15px 34px rgba(18,64,48,.16);
}
.alternative-paths {
  margin-top: 19px;
  padding-top: 17px;
  border-top: 1px solid rgba(63,83,69,.11);
}
.alternative-paths__title {
  margin: 0 0 3px !important;
  color: var(--green-900) !important;
  font-family: Georgia, serif;
  font-size: 15px !important;
}
.alternative-paths__copy {
  max-width: 720px;
  margin: 0 !important;
  color: var(--muted) !important;
  font-size: 12.5px !important;
  line-height: 1.55;
}

@media (max-width: 780px) {
  .recommended-workshop-card { padding: 20px 17px; }
  .recommended-workshop-card h3 { font-size: 28px; }
  .recommended-workshop-card #workshopReason { font-size: 13.5px; }
}


/* =========================================================
   V0.6.2.3 — DERNIERS AJUSTEMENTS AVANT ÉTAPE 7
   Centre vivant sans rotation · carillon d'arrivée discret ·
   verso intégral retranscrit dans un mode lecture premium.
   ========================================================= */

/* Le centre vit très doucement : aucun anneau ne tourne. */
.wheel-center::before,
.wheel-center::after {
  animation: none !important;
}
.wheel-center__logo {
  animation: v0623CenterBreathe 8.8s ease-in-out infinite !important;
  transform-origin: 50% 50%;
}
.wheel-center__logo img {
  animation: v0623CenterLight 8.8s ease-in-out infinite !important;
}
.wheel-center__logo::before {
  animation: v0623HaloBreathe 8.8s ease-in-out infinite !important;
}
.wheel-center__logo::after {
  content: "✦";
  position: absolute;
  z-index: 4;
  top: -3px;
  right: 7px;
  color: #c99a42;
  font-size: 13px;
  line-height: 1;
  text-shadow: 0 0 9px rgba(216,185,120,.62);
  opacity: 0;
  pointer-events: none;
  animation: v0623CenterStar 9.6s ease-in-out 2.4s infinite;
}
@keyframes v0623CenterBreathe {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.018); }
}
@keyframes v0623CenterLight {
  0%,100% { filter: drop-shadow(0 8px 19px rgba(196,154,74,.12)) brightness(1); }
  50% { filter: drop-shadow(0 10px 25px rgba(196,154,74,.22)) brightness(1.028); }
}
@keyframes v0623HaloBreathe {
  0%,100% { opacity: .60; transform: scale(.98); }
  50% { opacity: .86; transform: scale(1.045); }
}
@keyframes v0623CenterStar {
  0%,74%,100% { opacity: 0; transform: scale(.45) rotate(0deg); }
  80% { opacity: .95; transform: scale(1.15) rotate(10deg); }
  88% { opacity: .26; transform: scale(.72) rotate(18deg); }
}

/* Le verso devient un vrai espace de lecture et non une image à déchiffrer. */
.message-heading--premium {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
}
.message-heading--premium > div { min-width: 0; }
.message-heading--premium .button { flex: 0 0 auto; white-space: nowrap; }
.verso-reading {
  display: grid;
  gap: 12px;
  margin: 18px 0 16px;
}
.verso-reading__section {
  padding: 16px 18px;
  border: 1px solid rgba(63,83,69,.11);
  border-radius: 16px;
  background: rgba(255,255,255,.61);
  box-shadow: inset 0 1px rgba(255,255,255,.82);
}
.verso-reading__section p:last-child,
.verso-reading__section blockquote {
  margin: 7px 0 0;
  color: #33463d;
  font-size: 16px;
  line-height: 1.68;
}
.verso-reading__label {
  margin: 0;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 780;
  letter-spacing: .14em;
}
.verso-reading__section--archetype {
  background: linear-gradient(135deg, rgba(247,250,246,.92), rgba(232,238,231,.72));
  border-color: rgba(196,154,74,.22);
}
.verso-reading__section--archetype h3 {
  margin: 7px 0 0;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 500;
}
.verso-reading__section--message {
  position: relative;
  overflow: hidden;
  border-color: rgba(196,154,74,.30);
  background: linear-gradient(135deg, rgba(255,252,246,.92), rgba(238,242,234,.78));
}
.verso-reading__section--message::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  bottom: 15px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}
.verso-reading__section--question {
  border-color: rgba(196,154,74,.25);
  background: rgba(216,185,120,.08);
}
.verso-reading__section--question p:last-child {
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.56;
}
.verso-reading__section--integration {
  text-align: center;
  border-color: rgba(196,154,74,.34);
  background: linear-gradient(145deg, rgba(238,243,236,.85), rgba(255,252,245,.88));
}
.verso-reading__section--integration blockquote {
  padding: 0;
  border: 0;
  color: var(--green-900);
  font-family: Georgia, serif;
  font-size: 18px;
  font-style: italic;
}
.resonance-details {
  margin: 14px 0 18px;
  border: 1px solid rgba(63,83,69,.13);
  border-radius: 15px;
  background: rgba(247,249,245,.62);
  overflow: hidden;
}
.resonance-details summary {
  padding: 13px 16px;
  cursor: pointer;
  color: var(--green-800);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .02em;
}
.resonance-details summary:hover { background: rgba(232,238,231,.46); }
.resonance-details__content { padding: 0 15px 15px; }
.resonance-details .resonance-grid { margin: 4px 0 12px; }
.essence--compact { margin: 0; font-size: 16px; line-height: 1.55; }

/* Le bouton d'agrandissement devient plus explicite après la révélation. */
#enlargeCard:not([hidden]) {
  border-color: rgba(196,154,74,.42);
  background: rgba(255,252,246,.76);
}

@media (max-width: 720px) {
  .message-heading--premium { align-items: stretch; flex-direction: column; }
  .message-heading--premium .button { width: 100%; }
  .verso-reading__section { padding: 14px 15px; }
  .verso-reading__section p:last-child,
  .verso-reading__section blockquote { font-size: 15px; line-height: 1.62; }
  .verso-reading__section--question p:last-child { font-size: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  .wheel-center__logo,
  .wheel-center__logo img,
  .wheel-center__logo::before,
  .wheel-center__logo::after { animation: none !important; }
  .wheel-center__logo::after { display: none !important; }
}


/* Étape 7 — lien informatif discret sous les CTA de réservation */
.alternative-paths__info-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  color: #50665a;
  font-size: 0.91rem;
  line-height: 1.35;
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 154, 74, 0.45);
  padding-bottom: 2px;
  transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}
.alternative-paths__info-link:hover,
.alternative-paths__info-link:focus-visible {
  color: #274839;
  border-color: rgba(196, 154, 74, 0.85);
}


/* =========================================================
   V0.6.2.6 HQ — NETTETÉ WEB / BAT VERCEL
   Les éléments raster restent fixes; la lumière s'anime autour d'eux.
   ========================================================= */
.intro-logo,
.wheel-center__logo img,
.card-choice__frame img,
.flip-face img,
.viewer-card img {
  image-rendering: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Le logo central ne change plus d'échelle : halo + étoile portent l'animation. */
.wheel-center__logo { animation: none !important; transform: none !important; }
.wheel-center__logo img {
  animation: none !important;
  transform: none !important;
  filter: drop-shadow(0 9px 21px rgba(196,154,74,.16));
}
.wheel-center__logo::before {
  animation: v0626HaloOnly 8.8s ease-in-out infinite !important;
}
@keyframes v0626HaloOnly {
  0%,100% { opacity: .52; transform: scale(.97); }
  50% { opacity: .78; transform: scale(1.055); }
}

/* Aucun flou sur les images pendant les transitions. */
.card-choice,
.card-choice__frame,
.card-choice__frame img,
.threshold-transition__logo img { filter: none; }
@keyframes thresholdLogo {
  0% { transform: scale(.97); opacity: 0; filter: none; }
  45% { opacity: 1; filter: none; }
  82% { transform: scale(1); opacity: 1; }
  100% { transform: scale(.985); opacity: 0; filter: none; }
}

/* Survol premium mais moins de mise à l'échelle raster. */
.card-choice:hover .card-choice__frame,
.card-choice:focus-visible .card-choice__frame {
  transform: translateY(-6px) scale(1.025) !important;
}
.card-choice:hover .card-choice__frame img,
.card-choice:focus-visible .card-choice__frame img {
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .wheel-center__logo::before { animation: none !important; }
}
