


body.page-astro-perso{
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}



.ap-ciel{
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}


.ap-ciel::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 76% at 50% 44%,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.58) 46%,
      transparent 74%),
    linear-gradient(180deg,
      rgba(10,10,10,0.34) 0%,
      rgba(10,10,10,0.20) 24%,
      rgba(10,10,10,0.58) 60%,
      rgba(10,10,10,0.95) 86%,
      var(--bg) 100%),
    url('/css/hero.jpg') center 28% / cover no-repeat;
  transition: opacity 1.2s var(--ease);
}


body.ap-en-cours .ap-ciel::before{ opacity: 0.16; }


.ap-ciel-halo{
  position: absolute;
  top: -6%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, 130vw);
  height: 62vh;
  background: radial-gradient(circle,
    rgba(129,74,200,0.30) 0%,
    rgba(80,40,150,0.13) 42%,
    transparent 70%);
  filter: blur(70px);
  animation: apRespire 11s ease-in-out infinite;
}

@keyframes apRespire{
  0%, 100%{ opacity: 0.75; transform: translateX(-50%) scale(1); }
  50%     { opacity: 1;    transform: translateX(-50%) scale(1.07); }
}

@media (prefers-reduced-motion: reduce){
  .ap-ciel-halo{ animation: none; opacity: 0.9; }
}


.ap-progress{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 200;
}

.ap-progress-fill{
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 14px var(--accent-glow-strong);
  transition: width 0.7s var(--ease);
  position: relative;
}


.ap-progress-fill::after{
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 12px var(--accent-light);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.ap-progress-fill.lit::after{ opacity: 1; }


.ap-progress-fill::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-100%);
}

.ap-progress-fill.sweep::before{
  animation: apSweep 0.9s var(--ease);
}

@keyframes apSweep{
  to{ transform: translateX(100%); }
}

.ap-counter{
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 201;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.ap-counter.show{ opacity: 1; }


.ap-logo{
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 201;
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

.ap-logo:hover{ color: var(--heading); }


.ap-step{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  pointer-events: none;
  overflow-y: auto;
}

.ap-step.active{
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.ap-step.exit{
  opacity: 0;
  transform: translateY(-20px);
}


.ap-icon{
  font-size: 44px;
  margin-bottom: 28px;
  opacity: 0.6;
}

.ap-title{
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2;
  color: var(--heading);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 400;
}

.ap-sub{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 40px;
  max-width: 460px;
}


.ap-input{
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-family: var(--font-heading);
  
  font-size: 18px;
  text-align: center;
  padding: 12px 0;
  width: 100%;
  max-width: 360px;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.ap-input:focus{
  border-bottom-color: var(--heading);
  outline: none;
}

.ap-input::placeholder{
  color: rgba(255,255,255,0.15);
  font-family: var(--font-heading);
}

.ap-date,
.ap-time{
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-family: var(--font-mono);
  font-size: 18px;
  text-align: center;
  padding: 12px 0;
  color-scheme: dark;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.ap-date{ width: 100%; max-width: 280px; }
.ap-time{ width: 180px; }

.ap-date:focus,
.ap-time:focus{
  border-bottom-color: var(--heading);
  outline: none;
}

.ap-area{
  width: 100%;
  max-width: 520px;
  min-height: 120px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  padding: 16px;
  resize: none;
  transition: border-color 0.2s var(--ease);
}

.ap-area:focus{
  border-color: var(--border-hover);
  outline: none;
}

.ap-area::placeholder{ color: rgba(255,255,255,0.2); }

.ap-count{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
  width: 100%;
  max-width: 520px;
  text-align: right;
}


.ap-next{ margin-top: 32px; }

.ap-next:disabled{
  opacity: 0.2;
  cursor: not-allowed;
}

.ap-next:disabled:hover{
  background: var(--heading);
  color: var(--bg);
  transform: none;
}

.ap-skip{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.2s var(--ease);
}

.ap-skip:hover{ color: var(--text); }


.ap-city-wrap{
  position: relative;
  width: 100%;
  max-width: 360px;
}

.ap-city-results{
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  z-index: 20;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  text-align: left;
}

.ap-city-opt{
  padding: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--heading);
  cursor: pointer;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s var(--ease);
}

.ap-city-opt:hover{ background: rgba(255,255,255,0.04); }

.ap-city-opt small{
  color: var(--muted);
  font-size: 12px;
  margin-left: 4px;
}


.ap-grid{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 620px;
}

.ap-card{
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px 20px;
  cursor: pointer;
  text-align: center;
  flex: 1;
  min-width: 132px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.ap-card:hover{
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.ap-card.selected{
  border-color: var(--accent);
  background: var(--accent-glow);
}

.ap-card .ap-card-icon{
  font-size: 26px;
  margin-bottom: 12px;
}


.ap-card-label{
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
  color: var(--heading);
}


.ap-hero-kicker{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.ap-hero-title{
  font-family: var(--font-heading);
  font-size: 52px;
  line-height: 1.1;
  color: var(--heading);
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 680px;
}

.ap-hero-text{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  max-width: 520px;
  margin-bottom: 36px;
}

.ap-specs{
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.ap-spec{
  padding: 16px 26px;
  text-align: center;
  border-right: 1px solid var(--border);
  min-width: 120px;
}

.ap-spec:last-child{ border-right: none; }

.ap-spec-val{
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 4px;
}

.ap-spec-key{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}

.ap-scarcity{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ap-scarcity .ap-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 8px var(--accent-light);
  animation: apPulse 2s var(--ease) infinite;
}

@keyframes apPulse{
  0%,100%{ opacity: 1; }
  50%{ opacity: 0.3; }
}

.ap-fine{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 16px;
}


.ap-recap{
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  margin-bottom: 28px;
}

.ap-recap-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 14px;
}

.ap-recap-row:last-child{ border-bottom: none; }

.ap-recap-key{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ap-recap-val{
  color: var(--heading);
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ap-price{
  font-family: var(--font-heading);
  font-size: 44px;
  color: var(--heading);
  margin-bottom: 6px;
}


@media (max-width: 656px){
  .ap-hero-title{ font-size: 34px; }
  .ap-title{ font-size: 25px; line-height: 1.25; }
  .ap-input{ font-size: 18px; }
  .ap-area{ font-size: 16px; }
  .ap-grid{ flex-direction: column; width: 100%; max-width: 360px; }
  .ap-card{ min-width: auto; }
  .ap-specs{ flex-direction: column; width: 100%; max-width: 320px; }
  .ap-spec{ border-right: none; border-bottom: 1px solid var(--border); }
  .ap-spec:last-child{ border-bottom: none; }
}




.ap-statement{
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.3;
  color: var(--heading);
  text-align: center;
  max-width: 620px;
  margin-bottom: 36px;
  font-weight: 400;
}

.ap-choices{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 520px;
}

.ap-choice{
  flex: 1;
  min-width: 120px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 13px 18px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.ap-choice:hover{
  border-color: var(--accent);
  background: var(--accent-glow);
  color: var(--heading);
  transform: translateY(-2px);
}

.ap-choice.picked{
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}


.ap-insight{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 26px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.ap-insight.show{ opacity: 1; transform: translateY(0); }


.ap-reveal{
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.ap-reveal-cell{
  padding: 22px 30px;
  text-align: center;
  border-right: 1px solid var(--border);
  min-width: 132px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.ap-reveal-cell.show{ opacity: 1; transform: translateY(0); }
.ap-reveal-cell:last-child{ border-right: none; }

.ap-reveal-glyph{
  font-size: 24px;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.ap-reveal-sign{
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--heading);
  margin-bottom: 4px;
}

.ap-reveal-body{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}


.ap-calc-bar{
  width: 220px;
  height: 2px;
  background: var(--border);
  margin-top: 28px;
  overflow: hidden;
  position: relative;
}

.ap-calc-bar::after{
  content: '';
  position: absolute;
  left: -40%;
  width: 40%;
  height: 100%;
  background: var(--accent-light);
  animation: apCalc 1.1s var(--ease) infinite;
}

@keyframes apCalc{
  0%{ left: -40%; }
  100%{ left: 100%; }
}


.ap-teaser{
  position: relative;
  width: 100%;
  max-width: 560px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 26px 26px 60px;
  margin-bottom: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  text-align: left;
  overflow: hidden;
}

.ap-teaser::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to bottom, transparent, var(--bg-card) 78%);
}

.ap-teaser-cut{
  filter: blur(4px);
  opacity: 0.5;
  user-select: none;
}

.ap-offer-line{
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  max-width: 520px;
  margin-bottom: 24px;
}

@media (max-width: 656px){
  .ap-statement{ font-size: 25px; }
  .ap-choices{ flex-direction: column; }
  .ap-choice{ min-width: auto; }
  .ap-reveal{ flex-direction: column; width: 100%; max-width: 320px; }
  .ap-reveal-cell{ border-right: none; border-bottom: 1px solid var(--border); }
  .ap-reveal-cell:last-child{ border-bottom: none; }
}




.ap-verdict{
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.32;
  color: var(--heading);
  text-align: center;
  max-width: 700px;
  margin-bottom: 28px;
  font-weight: 400;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.ap-verdict.show{ opacity: 1; transform: translateY(0); }

.ap-verdict-src{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 22px;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
}

.ap-verdict-src.show{ opacity: 1; }


.ap-rarity{
  display: flex;
  align-items: baseline;
  gap: 10px;
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  background: var(--accent-glow);
  padding: 14px 22px;
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.ap-rarity.show{ opacity: 1; transform: scale(1); }

.ap-rarity-num{
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--heading);
}

.ap-rarity-txt{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text);
}


.ap-ticks{
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
  text-align: left;
}

.ap-tick{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  opacity: 0.25;
  transition: opacity 0.5s var(--ease), color 0.5s var(--ease);
}

.ap-tick.done{
  opacity: 1;
  color: var(--text);
}

.ap-tick-mark{
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-hover);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}

.ap-tick.done .ap-tick-mark{
  border-color: var(--accent-light);
  background: var(--accent);
}

.ap-tick.done .ap-tick-mark::after{
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}


.ap-analyse-bar{
  width: 100%;
  max-width: 400px;
  height: 2px;
  background: var(--border);
  margin-top: 26px;
  overflow: hidden;
}

.ap-analyse-fill{
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 12px var(--accent-glow-strong);
  transition: width 0.9s var(--ease);
}

.ap-analyse-pct{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin-top: 12px;
}

@media (max-width: 656px){
  .ap-verdict{ font-size: 26px; }
  .ap-rarity{ flex-direction: column; align-items: center; gap: 4px; text-align: center; }
}


.ap-dmy{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ap-dmy-field{
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.1;
  text-align: center;
  padding: 10px 0;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
  -moz-appearance: textfield;
}

.ap-dmy-field::-webkit-outer-spin-button,
.ap-dmy-field::-webkit-inner-spin-button{ -webkit-appearance: none; margin: 0; }

.ap-dmy-field:focus{
  border-bottom-color: var(--accent-light);
  outline: none;
}

.ap-dmy-field::placeholder{ color: rgba(255,255,255,0.13); }

.ap-dmy-field.w2{ width: 78px; }
.ap-dmy-field.w4{ width: 132px; }

.ap-dmy-sep{
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--subtle);
  padding: 0 2px 10px;
}

.ap-dmy-hint{
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}

.ap-dmy-hint span.w2{ width: 78px; text-align: center; }
.ap-dmy-hint span.w4{ width: 132px; text-align: center; }
.ap-dmy-hint span.sep{ width: 12px; }

.ap-field-error{
  font-family: var(--font-mono);
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 14px;
  min-height: 14px;
}

@media (max-width: 656px){
  .ap-dmy-field{ font-size: 18px; }
  .ap-dmy-field.w2{ width: 58px; }
  .ap-dmy-field.w4{ width: 100px; }
  .ap-dmy-sep{ font-size: 26px; }
  .ap-dmy-hint span.w2{ width: 58px; }
  .ap-dmy-hint span.w4{ width: 100px; }
}


.ap-ampm{
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 22px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s var(--ease), max-height 0.4s var(--ease), margin-top 0.4s var(--ease);
}

.ap-ampm.show{ opacity: 1; max-height: 70px; }

.ap-ampm-btn{
  background: none;
  border: 1px solid var(--border);
  border-radius: 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 22px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.ap-ampm-btn:hover{ border-color: var(--accent); color: var(--heading); }

.ap-ampm-btn.picked{
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.ap-heure-echo{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-top: 16px;
  min-height: 14px;
}


.ap-transition-text{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  text-align: center;
  max-width: 520px;
  margin-bottom: 34px;
}


.ap-source{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  margin-bottom: 22px;
  min-height: 14px;
}

.ap-count-frame{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}


.ap-bridge{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  text-align: center;
  max-width: 460px;
  margin-bottom: 24px;
  min-height: 14px;
  opacity: 0.85;
}

#bridge-6{ margin-top: 4px; margin-bottom: 28px; }


.ap-dossier{
  width: 100%;
  max-width: 540px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  padding: 22px 26px;
  margin-bottom: 26px;
  text-align: left;
}

.ap-dossier-titre{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.ap-dossier-liste{
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-dossier-liste li{
  position: relative;
  padding: 8px 0 8px 22px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.ap-dossier-liste li:last-child{ border-bottom: none; }

.ap-dossier-liste li::before{
  content: '';
  position: absolute;
  left: 2px;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-light);
}

#offer-intro{ margin-bottom: 26px; }
#offer-main{ margin-bottom: 20px; }


.ap-card.bloquee{
  opacity: 0.28;
  pointer-events: none;
}

.ap-choix-etat{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
  min-height: 14px;
}


.ap-sit-bloc{ margin-bottom: 26px; width: 100%; }

.ap-sit-titre{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  text-align: center;
}

.ap-chips{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}

.ap-chip{
  background: none;
  border: 1px solid var(--border);
  border-radius: 48px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 18px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.ap-chip:hover{ border-color: var(--accent); color: var(--heading); }

.ap-chip.picked{
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}


#grille-duree .ap-card{ padding: 18px 14px; min-width: 118px; }


#grille-duree{ max-width: 560px; }
#grille-duree .ap-card{ flex: 0 1 auto; padding: 18px 20px; min-width: 0; }


.ap-dossier-carte{
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 20px);
  z-index: 202;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 48px;
  background: rgba(18,18,18,0.92);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.ap-dossier-carte.show{ opacity: 1; transform: translate(-50%, 0); }

.ap-dc-titre{
  font-family: var(--font-heading);
  font-size: 14px;
  font-style: italic;
  color: var(--heading);
  white-space: nowrap;
}

.ap-dc-etat{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ap-dc-jauge{
  width: 54px;
  height: 2px;
  background: var(--border);
  display: inline-block;
  position: relative;
}

.ap-dc-jauge i{
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--accent-light);
  transition: width 0.7s var(--ease);
}

.ap-dc-num{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text);
}


.ap-clip{
  display: none;            
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  margin-bottom: 30px;
  background: var(--bg-card);
  box-shadow: var(--shadow-glow);
}

.ap-clip video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-clip-play{
  position: absolute;
  inset: 0;
  margin: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.ap-clip-play:hover{ background: var(--accent); transform: scale(1.06); }
.ap-clip.joue .ap-clip-play{ opacity: 0; pointer-events: none; }







@media (max-width: 656px){
  .ap-clip{ max-width: 210px; margin-bottom: 22px; }
  .ap-dossier-carte{ gap: 8px; padding: 8px 14px; }
  .ap-dc-etat{ display: none; }
}


.ap-fiche{
  width: 100%;
  max-width: 620px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-card);
  margin-bottom: 28px;
  text-align: left;
  overflow: hidden;
}

.ap-fiche-ligne{
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 14px;
  align-items: baseline;
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s var(--ease);
}

.ap-fiche-ligne:last-child{ border-bottom: none; }
.ap-fiche-ligne:hover{ background: rgba(255,255,255,0.03); }

.ap-fiche-cle{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
}

.ap-fiche-val{
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--heading);
}

.ap-fiche-mod{
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--accent-light);
  opacity: 0;
  transition: opacity 0.15s var(--ease);
  white-space: nowrap;
}

.ap-fiche-ligne:hover .ap-fiche-mod{ opacity: 1; }

.ap-fiche-attente{ cursor: default; }
.ap-fiche-attente:hover{ background: none; }
.ap-fiche-attente .ap-fiche-val{ color: var(--accent-light); font-style: italic; }


.ap-dates{
  width: 100%;
  max-width: 520px;
  margin-bottom: 26px;
}

.ap-date{
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.ap-date:last-child{ border-bottom: none; }
.ap-date.show{ opacity: 1; transform: translateY(0); }

.ap-date-jour{
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--heading);
  min-width: 130px;
}

.ap-date-quoi{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
}


.ap-envoi{
  width: 100%;
  max-width: 400px;
  margin-bottom: 22px;
  text-align: center;
}

.ap-envoi label{
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ap-envoi input{
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 17px;
  text-align: center;
  padding: 8px 0;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.ap-envoi input:focus{ border-bottom-color: var(--accent-light); outline: none; }

.ap-envoi-note{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  opacity: 0.75;
}

@media (max-width: 656px){
  .ap-fiche-ligne{ grid-template-columns: 1fr; gap: 4px; }
  .ap-fiche-mod{ opacity: 1; }
  .ap-date{ flex-direction: column; gap: 4px; }
  .ap-date-jour{ min-width: 0; }
}


.ap-clip.pret{ display: block; }


#ap-15 .ap-grid{ max-width: 790px; }

#ap-15 .ap-card{
  flex: 0 0 142px;
  min-width: 0;
  padding: 22px 14px;
}

@media (max-width: 830px){
  #ap-15 .ap-grid{ max-width: 460px; }
  #ap-15 .ap-card{ flex: 0 0 calc(33.333% - 8px); }
}

@media (max-width: 560px){
  #ap-15 .ap-grid{ max-width: 340px; flex-direction: row; }
  #ap-15 .ap-card{ flex: 0 0 calc(50% - 6px); padding: 18px 10px; }
}


.ap-card.selected{
  border-color: var(--accent-light);
  border-width: 2px;
  background: rgba(129, 74, 200, 0.28);
  box-shadow: 0 0 24px rgba(129, 74, 200, 0.35);
}

.ap-card{ position: relative; }

.ap-card.selected::after{
  content: '';
  position: absolute;
  top: 9px;
  right: 9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent-light);
}

.ap-card.selected::before{
  content: '';
  position: absolute;
  top: 13px;
  right: 14px;
  width: 4px;
  height: 8px;
  border: solid #0A0A0A;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  z-index: 1;
}

.ap-card.selected .ap-card-label{ color: var(--heading); }
.ap-card.selected .ap-card-icon{ color: var(--accent-light); }


.ap-aide{
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  max-width: 380px;
  text-align: center;
  opacity: 0.75;
  line-height: 1.6;
}

#grille-pourqui{ max-width: 420px; }
#grille-pourqui .ap-card{ flex: 0 0 190px; padding: 28px 20px; }
#chips-lien{ margin-bottom: 8px; }


#grille-amene{ max-width: 700px; }


.ap-leurs-mots{
  width: 100%;
  max-width: 560px;
  margin-bottom: 30px;
}

.ap-mot{
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.ap-mot:last-child{ border-bottom: none; }

.ap-mot-cle{
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.ap-mot-val{
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.4;
  color: var(--heading);
}

.ap-verdict-final{
  font-family: var(--font-heading);
  font-size: 27px;
  line-height: 1.35;
  color: var(--accent-light);
  text-align: center;
  max-width: 580px;
  margin-bottom: 30px;
}

@media (max-width: 656px){
  .ap-mot-val{ font-size: 20px; }
  .ap-verdict-final{ font-size: 21px; }
  .ap-transition-text{ font-size: 16px; }
  .ap-hero-text{ font-size: 16px; }
}


.ap-commande{
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--border-hover);
  border-radius: var(--r-md);
  background: var(--bg-card);
  padding: 26px 28px 28px;
  margin-top: 8px;
  text-align: left;
}

.ap-cmd-quoi{
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
}

.ap-cmd-titre{
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--heading);
  margin-bottom: 6px;
}

.ap-cmd-detail{
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.ap-cmd-ligne{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.ap-cmd-cle{
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
}

.ap-cmd-val{
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--heading);
  text-align: right;
}

.ap-cmd-ligne input{
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-hover);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 16px;
  text-align: right;
  padding: 4px 0;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.ap-cmd-ligne input:focus{ border-bottom-color: var(--accent-light); outline: none; }
.ap-cmd-ligne input::placeholder{ color: rgba(255,255,255,0.25); }

.ap-cmd-prix{ border-bottom: none; padding-bottom: 22px; }
.ap-cmd-prix .ap-price{ font-size: 38px; margin: 0; line-height: 1; }

.ap-commande .btn-md{
  width: 100%;
  height: 46px;
  font-size: 16px;
}

@media (max-width: 560px){
  .ap-commande{ padding: 22px 20px 24px; }
  .ap-cmd-titre{ font-size: 22px; }
  .ap-cmd-ligne{ flex-direction: column; align-items: flex-start; gap: 6px; }
  .ap-cmd-ligne input, .ap-cmd-val{ text-align: left; width: 100%; }
}


.ap-cmd-ligne input{
  font-size: 18px;
  border-bottom-width: 1px;
  border-bottom-color: var(--border-accent);
}

.ap-cmd-ligne input:hover{ border-bottom-color: var(--accent-light); }


.ap-commande{
  max-width: 420px;
  padding: 30px 30px 26px;
  text-align: center;
}

.ap-cmd-label{
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
}

.ap-commande input{
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-accent);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 18px;
  text-align: center;
  padding: 8px 0 12px;
  margin-bottom: 26px;
  border-radius: 0;
  transition: border-color 0.2s var(--ease);
}

.ap-commande input:focus{ border-bottom-color: var(--accent-light); outline: none; }
.ap-commande input::placeholder{ color: rgba(255,255,255,0.25); }

.ap-cmd-delai{
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
}


.ap-hero-kicker{
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.ap-hero-title{
  
  font-size: 56px;
  line-height: 1.08;
  margin-bottom: 26px;
  max-width: 780px;
}

.ap-hero-text{
  font-size: 19px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 46px;
}


.ap-etapes{
  display: flex;
  gap: 0;
  width: 100%;
  max-width: 800px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.ap-etape{
  flex: 1;
  padding: 30px 28px 32px;
  border-right: 1px solid var(--border);
  text-align: left;
}

.ap-etape:last-child{ border-right: none; }

.ap-etape-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  color: var(--accent-light);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-bottom: 14px;
}

.ap-etape-titre{
  display: block;
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--heading);
  margin-bottom: 9px;
}

.ap-etape-texte{
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text);
}


.ap-etapes{
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ap-cta{
  height: 48px;
  font-size: 17px;
  padding: 0 40px;
}

@media (max-width: 780px){
  .ap-hero-title{ font-size: 32px; }
  .ap-hero-text{ font-size: 17px; margin-bottom: 34px; }
  .ap-etapes{ flex-direction: column; max-width: 400px; }
  .ap-etape{ border-right: none; border-bottom: 1px solid var(--border); padding: 20px 22px; }
  .ap-etape:last-child{ border-bottom: none; }
}


#grille-amene{
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  max-width: 620px;
}

.ap-aveu{
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  padding: 17px 22px;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.ap-aveu:hover{
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
  color: var(--heading);
}

.ap-aveu.selected{
  border-color: var(--accent-light);
  background: rgba(129, 74, 200, 0.22);
  color: var(--heading);
}

.ap-aveu:last-child{
  border-style: dashed;
  color: var(--muted);
}

.ap-aveu:last-child:hover{ color: var(--text); }

@media (max-width: 560px){
  .ap-aveu{ font-size: 15px; padding: 15px 18px; }
}


.ap-aveu-bloc{
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 26px;
}

.ap-aveu-bloc:last-child{ margin-bottom: 0; }

.ap-aveu-titre{
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 5px;
}

.ap-aveu-champ{
  min-height: 90px;
  margin-top: 4px;
}


.ap-aveu-libre{
  border-style: dashed;
  color: var(--muted);
}

.ap-aveu-libre:hover{ color: var(--text); }
.ap-aveu:last-child{ border-style: solid; }
.ap-aveu-libre{ border-style: dashed; }


.ap-propose{
  width: 100%;
  background: rgba(129, 74, 200, 0.16);
  border: 2px solid var(--accent-light);
  border-radius: var(--r-md);
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 25px;
  line-height: 1.4;
  text-align: left;
  padding: 24px 28px;
  cursor: default;
  box-shadow: 0 0 30px rgba(129, 74, 200, 0.22);
}

.ap-voir-autres{
  align-self: flex-start;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-hover);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 4px 0;
  margin-top: 14px;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.ap-voir-autres:hover{ color: var(--heading); border-bottom-color: var(--accent-light); }

.ap-aveu-liste{
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 14px;
}

.ap-aveu-bloc{ margin-bottom: 34px; }




.ap-propose:not(.selected){
  background: none;
  border-color: var(--border);
  border-width: 1px;
  box-shadow: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  padding: 20px 24px;
  cursor: pointer;
}

.ap-propose:not(.selected):hover{
  border-color: var(--border-hover);
  background: rgba(255,255,255,0.03);
  color: var(--heading);
}


.ap-liste-choix{
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  max-width: 560px;
}

.ap-champ-secours{
  width: 100%;
  max-width: 560px;
  margin-top: 12px;
}




.ap-title{
  font-family: var(--font-heading);
  
  font-size: 36px;
  line-height: 1.14;
  letter-spacing: -0.5px;
  font-weight: 400;
  color: var(--heading);
  text-align: center;
  max-width: 15ch;
  margin-bottom: 16px;
}


.ap-sub{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
  text-align: center;
  max-width: 34ch;
  margin-bottom: 40px;
}


.ap-statement{
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.9vw, 40px);
  line-height: 1.26;
  letter-spacing: -0.3px;
  max-width: 19ch;
  margin-bottom: 40px;
}

.ap-verdict{
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1.24;
  letter-spacing: -0.4px;
  max-width: 19ch;
}

.ap-transition-text{
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--text);
  max-width: 36ch;
}

.ap-hero-text{ font-size: 17px; line-height: 1.65; font-weight: 300; }


.ap-choice,
.ap-chip,
.ap-aveu,
.ap-card-label,
.ap-cmd-label,
.ap-tick,
.ap-fiche-val,
.ap-propose{
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.ap-choice{ font-size: 18px; min-height: 60px; padding: 16px 26px; }
.ap-chip{   font-size: 18px; min-height: 56px; padding: 14px 24px; }
.ap-aveu{   font-size: 18px; line-height: 1.6; min-height: 56px; padding: 18px 24px; }
.ap-card-label{ font-size: 18px; }
.ap-tick{   font-size: 17px; }
.ap-fiche-val{ font-size: 18px; }
.ap-cmd-label{ font-size: 18px; }


.ap-source,
.ap-verdict-src,
.ap-count-frame,
.ap-fiche-cle,
.ap-sit-titre,
.ap-aveu-titre,
.ap-dossier-titre,
.ap-envoi label,
.ap-choix-etat,
.ap-rarity-txt,
.ap-fine,
.ap-skip,
.ap-aide,
.ap-dmy-hint,
.ap-cmd-delai,
.ap-envoi-note{
  font-family: var(--font-body);
  text-transform: none;
  letter-spacing: 0;
}

.ap-source,
.ap-verdict-src{ font-size: 16px; color: var(--accent-light); margin-bottom: 22px; }
.ap-sit-titre,
.ap-aveu-titre{ font-size: 17px; color: var(--accent-light); margin-bottom: 12px; }
.ap-count-frame{ font-size: 16px; color: var(--muted); }
.ap-fiche-cle{  font-size: 15px; color: var(--muted); }
.ap-rarity-txt{ font-size: 17px; }
.ap-choix-etat{ font-size: 17px; color: var(--accent-light); }
.ap-fine,
.ap-cmd-delai,
.ap-envoi-note{ font-size: 15px; color: var(--muted); }
.ap-skip{ font-size: 16px; color: var(--muted); }
.ap-aide{ font-size: 15px; color: var(--muted); max-width: 42ch; line-height: 1.6; }
.ap-dmy-hint{ font-size: 14px; color: var(--muted); }


.ap-hero-kicker{
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 24px;
}


.ap-progress{ height: 3px; }

.ap-counter{
  top: 26px;
  right: 26px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--muted);
}


.ap-step{
  justify-content: center;
  justify-content: safe center;
  padding: 84px 24px 56px;
}


@media (max-width: 700px){
  .ap-title{ font-size: 32px; max-width: 17ch; }
  .ap-sub{ font-size: 17px; max-width: 30ch; margin-bottom: 32px; }
  .ap-statement{ font-size: clamp(24px, 6.6vw, 30px); max-width: 20ch; }
  .ap-verdict{ font-size: 32px; }
  .ap-transition-text{ font-size: 18px; }
  .ap-choice{ font-size: 18px; min-height: 58px; }
  .ap-chip,
  .ap-aveu{ font-size: 17px; }
  .ap-icon{ font-size: 34px; margin-bottom: 18px; }
  .ap-propose{ font-size: 18px; padding: 18px 20px; }
  .ap-step{ padding: 72px 18px 44px; }
}


.ap-field-error.ap-demande{
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--accent-light);
  text-align: center;
  max-width: 34ch;
  margin: 0 auto 18px;
  animation: apParait 0.35s var(--ease);
}

@keyframes apParait{
  from{ opacity: 0; transform: translateY(-5px); }
  to  { opacity: 1; transform: translateY(0); }
}


.ap-city-opt.ap-city-libre{
  border-top: 1px solid var(--border);
  color: var(--heading);
}

.ap-city-opt.ap-city-libre b{ font-weight: 500; color: var(--accent-light); }

.ap-city-opt.ap-city-libre small{
  display: block;
  margin-top: 3px;
  color: var(--muted);
}




.ap-verdict-src{
  font-size: 18px;
  color: var(--accent-light);
  max-width: 32ch;
  text-align: center;
  margin-bottom: 26px;
}


.ap-verdict{
  font-size: 36px;
  line-height: 1.28;
  max-width: 28ch;
  margin-bottom: 34px;
}



.ap-rarity{
  display: block;
  border: none;
  background: none;
  padding: 0;
  width: 100%;
  max-width: 660px;
  text-align: center;
  margin-bottom: 38px;
}


.ap-rarity-num{
  display: block;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 10px;
}


.ap-rarity-txt{
  display: block;
  font-family: var(--font-heading);
  
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: var(--accent-light);
  text-transform: none;
  max-width: 21ch;
  margin: 0 auto;
}

@media (max-width: 700px){
  .ap-verdict-src{ font-size: 17px; margin-bottom: 20px; }
  .ap-verdict{ font-size: 32px; max-width: 22ch; margin-bottom: 26px; }
  .ap-rarity{ max-width: 100%; margin-bottom: 30px; }
  .ap-rarity-txt{ max-width: 18ch; }
  .ap-rarity-num{ font-size: 17px; }
  .ap-rarity-txt{ font-size: 28px; }
}


.ap-title,
.ap-statement,
.ap-verdict,
.ap-rarity-txt,
.ap-hero-title,
.ap-transition-text{
  text-wrap: balance;
}

.ap-rarity-txt{ max-width: 25ch; }
.ap-sub,
.ap-hero-text{ text-wrap: pretty; }

@media (max-width: 700px){
  .ap-rarity-txt{ max-width: 20ch; }
}




.ap-bridge{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-light);
  text-align: center;
  max-width: 40ch;
  margin-bottom: 22px;
  text-wrap: balance;
}

.ap-ampm-btn{ font-size: 17px; min-height: 52px; }




#ap-16 .ap-title{ max-width: 22ch; }


.ap-aveu-titre{
  font-size: 17px;
  color: var(--accent-light);
  align-self: flex-start;
  margin: 4px 0 12px;
}

.ap-aveu-bloc + .ap-aveu-bloc{ margin-top: 34px; }


.ap-aveu.ap-aveu-libre{
  color: var(--text);
  border-style: dashed;
  opacity: 1;
}

.ap-aveu.ap-aveu-libre:hover{ color: var(--heading); border-color: var(--accent); }
.ap-aveu.ap-aveu-libre.selected{ border-style: solid; color: var(--heading); }


.ap-step .btn-md{
  height: auto;
  min-height: 56px;
  padding: 0 34px;
  font-size: 18px;
}


.ap-step .ap-skip{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  margin-top: 4px;
}

@media (max-width: 700px){
  .ap-step .btn-md{ min-height: 54px; width: 100%; max-width: 420px; }
  .ap-step .ap-skip{ min-height: 46px; }
}


.ap-marque{
  display: block;
  width: min(400px, 76vw);
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 34px rgba(152, 80, 248, 0.34));
}


.ap-hero-kicker:empty{ display: none; }

.ap-hero-kicker{
  font-family: var(--font-body);
  font-size: 17px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted);
  margin-bottom: 18px;
}

@media (max-width: 700px){
  .ap-marque{ width: min(300px, 78vw); margin-bottom: 18px; }
}


.ap-fiche-ligne.ap-tombe{
  opacity: 0;
  transform: translateY(9px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.ap-fiche-ligne.ap-tombe.posee{ opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .ap-fiche-ligne.ap-tombe{ opacity: 1; transform: none; transition: none; }
}


.ap-choice,
.ap-chip,
.ap-aveu,
.ap-card{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-aveu{ text-align: center; }

.ap-card{
  flex-direction: column;
  justify-content: center;
}


.ap-source{
  opacity: 0;
  transform: translateY(-5px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  min-height: 1.4em;
}

.ap-source.devoile{ opacity: 1; transform: translateY(0); }


#ap-13 .ap-source,
#ap-35 .ap-source,
#pont-15,
#pont-29{ opacity: 1; transform: none; }


.ap-title{ max-width: 13em; }
.ap-statement{ max-width: 17em; }
.ap-verdict{ max-width: 16em; }
.ap-rarity-txt{ max-width: 15em; }
#ap-16 .ap-title{ max-width: 13em; }

@media (max-width: 700px){
  .ap-title{ max-width: 12em; }
  .ap-statement{ max-width: 13em; }
  .ap-verdict{ max-width: 12em; }
  .ap-rarity-txt{ max-width: 11em; }
}


.ap-dispo{
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  color: var(--accent-light);
  text-align: center;
  max-width: 34ch;
  margin: 0 auto 24px;
  min-height: 1.5em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  text-wrap: balance;
}

.ap-dispo.trouve{ opacity: 1; transform: translateY(0); }

.ap-dispo.cherche{
  opacity: 1;
  transform: none;
  color: var(--muted);
}

.ap-dispo.cherche::after{
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 9px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--accent-light);
  animation: apCherche 1.1s ease-in-out infinite;
}

@keyframes apCherche{
  0%, 100%{ opacity: 0.25; transform: scale(0.8); }
  50%     { opacity: 1;    transform: scale(1.25); }
}

@media (prefers-reduced-motion: reduce){
  .ap-dispo.cherche::after{ animation: none; opacity: 0.7; }
}


.ap-source.ap-source-bas{
  margin-top: -18px;
  margin-bottom: 30px;
  font-size: 17px;
  max-width: 30ch;
}

@media (max-width: 700px){
  .ap-source.ap-source-bas{ margin-top: -12px; margin-bottom: 22px; font-size: 16px; }
}


.ap-genre{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 4px;
  align-items: center;
}

.ap-genre-titre{
  width: 100%;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 4px;
}


.ap-prix{
  display:flex; align-items:baseline; justify-content:center;
  gap:12px; flex-wrap:wrap; margin:6px 0 22px;
}
.ap-prix-lancement{
  font-family:var(--font-body);
  font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--ap-accent,#df7afe);
}
.ap-prix-actuel{
  font-family:'Cormorant Garamond',Georgia,serif;
  
  font-size:36px; line-height:1; color:#fff;
}
.ap-prix-apres{
  
  font-size:14px; color:var(--muted); text-decoration:line-through;
  text-decoration-thickness:1px;
}
@media (max-width:420px){
  .ap-prix{ gap:9px; }
  .ap-prix-actuel{ font-size:32px; }
}




.ap-logo,
.ap-hero-title,
.ap-title,
.ap-etape-titre,
.ap-verdict,
.ap-prix-actuel{
  font-family: var(--font-heading);
}


.ap-hero-text, .ap-hero-kicker, .ap-etape-texte, .ap-sub, .ap-source,
.ap-input, .ap-input::placeholder, .ap-area, .ap-area::placeholder,
.ap-chip, .ap-card-label, .ap-aveu, .ap-city-opt, .ap-choice,
.ap-skip, .ap-cta, .ap-fine, .ap-counter, .ap-dispo,
.ap-cmd-label, .ap-cmd-delai, .ap-cmd-cle, .ap-cmd-val,
.ap-dossier-liste li, .ap-dmy-field, .ap-dmy-sep,
.ap-verdict-src, .ap-rarity-num, .ap-rarity-txt,
.ap-prix-lancement, .ap-prix-apres{
  font-family: var(--font-body);
}


.ap-prix-lancement{
  font-weight: 500;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}


.ap-etape-num,
.ap-heure-echo,
.ap-fiche-mod{
  font-family: var(--font-body);
}
.ap-heure-echo{ font-size: 12px; }
.ap-fiche-mod{ font-size: 12px; }
.ap-prix-lancement{ font-size: 12px; }


.ap-fiche-mod{
  
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ap-fiche-ligne:hover .ap-fiche-mod,
.ap-fiche-mod:hover,
.ap-fiche-mod:focus-visible{
  color: var(--accent-light);
}


.ap-step{
  justify-content: flex-start;
  padding: 74px 18px 34px;
}
.ap-carte{
  width: 100%;
  max-width: 420px;
  
  margin: 0 auto;
  background: #111018;
  border: 1px solid var(--border);
  
  border-radius: var(--r-xl);
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.ap-carte > .ap-icon,
.ap-carte > .ap-source{
  min-height: 42px;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ap-carte:not(:has(> .ap-icon)):not(:has(> .ap-source)){
  padding-top: 84px;
}
.ap-carte > .btn-md{
  margin-top: 30px;
}


.ap-etape-num,
.ap-heure-echo,
.ap-fiche-mod{
  font-family: var(--font-body);
}
.ap-heure-echo{ font-size: 12px; }
.ap-fiche-mod{ font-size: 12px; }
.ap-prix-lancement{ font-size: 12px; }


.ap-fiche-mod{
  
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.ap-fiche-ligne:hover .ap-fiche-mod,
.ap-fiche-mod:hover,
.ap-fiche-mod:focus-visible{
  color: var(--accent-light);
}



#main-nav{ z-index: 300; }
.ap-progress{ top: 84px; }
.ap-counter{ top: 94px; right: 22px; }

.ap-step{ padding-top: 140px; }
.ap-carte:not(:has(> .ap-icon)):not(:has(> .ap-source)){ padding-top: 84px; }


@media (max-width: 768px){
  .ap-progress{ top: 92px; }
  .ap-counter{ top: 102px; right: 18px; }
  
  .ap-step{ padding-top: 136px; }
}



.ap-etapes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: none;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  overflow: visible;
}
.ap-etape{
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  background: #111018;
  padding: 26px 22px 24px;
}
.ap-etape-num{
  display: block;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.ap-etape-titre{ font-size: 20px; }
.ap-etape-texte{ font-size: 16px; }

@media (max-width: 720px){
  .ap-etapes{ grid-template-columns: 1fr; gap: 12px; }
  .ap-etape{ padding: 20px 20px 18px; }
  .ap-etape-num{ font-size: 32px; margin-bottom: 10px; }
}




.ap-ciel::before{
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.34) 0%,
      rgba(10,10,10,0.10) 22%,
      rgba(10,10,10,0.16) 54%,
      rgba(10,10,10,0.72) 84%,
      var(--bg) 100%),
    image-set(url('/img/astro-perso-ciel.webp') type('image/webp'),
              url('/img/astro-perso-ciel.jpg') type('image/jpeg'))
      center 34% / cover no-repeat;
}

.ap-ciel::after{
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(180deg, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.30) 52%, transparent 100%);
  pointer-events: none;
}


.ap-hero-kicker{ display: flex; align-items: center; justify-content: center; gap: 12px; }
.ap-kicker-etoile{ font-size: 10px; opacity: 0.7; }


.ap-separateur{
  display: flex; align-items: center; justify-content: center; gap: 14px;
  color: var(--accent-light); font-size: 12px;
  margin: 26px 0 30px;
}
.ap-separateur span{
  display: block; width: 54px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(223,122,254,0.5));
}
.ap-separateur span:last-child{ transform: scaleX(-1); }


.ap-etape{ text-align: center; }
.ap-etape-icone{
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; margin: 14px 0 16px;
  border: 1px solid rgba(223, 122, 254, 0.28);
  border-radius: 50%;
  color: var(--accent-light);
}
.ap-etape-icone svg{ width: 24px; height: 24px; }



.ap-cta.btn-primary{
  background: linear-gradient(180deg, rgba(147, 84, 214, 0.96), rgba(104, 52, 168, 0.96));
  color: #fff;
  border: 1px solid rgba(223, 122, 254, 0.45);
  box-shadow: 0 10px 30px rgba(129, 74, 200, 0.32);
  display: inline-flex; align-items: center; gap: 10px;
}
.ap-cta.btn-primary:hover{
  background: linear-gradient(180deg, rgba(163, 99, 229, 0.99), rgba(118, 62, 184, 0.99));
  box-shadow: 0 12px 36px rgba(129, 74, 200, 0.42);
}
.ap-cta-etoile{ font-size: 13px; opacity: 0.9; }


.ap-fine{ display: flex; align-items: center; justify-content: center; gap: 8px; }
.ap-cadenas{ width: 13px; height: 13px; flex: none; opacity: 0.7; }


.ap-carte{
  background: linear-gradient(180deg, rgba(30, 20, 46, 0.90), rgba(16, 12, 26, 0.94));
  border: 1px solid rgba(223, 122, 254, 0.18);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.60),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 100px rgba(129, 74, 200, 0.18);
}


.ap-carte > .ap-icon{ color: var(--accent-light); }


.ap-step .ap-card{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}
.ap-step .ap-card-icon{ color: var(--accent-light); }
.ap-step .ap-card.selected,
.ap-step .ap-card.picked{
  border-color: rgba(223, 122, 254, 0.55);
  background: rgba(129, 74, 200, 0.14);
  box-shadow: 0 0 26px rgba(129, 74, 200, 0.22);
}



.ap-step .btn-primary{
  background: linear-gradient(180deg, rgba(147, 84, 214, 0.96), rgba(104, 52, 168, 0.96));
  color: #fff;
  border: 1px solid rgba(223, 122, 254, 0.45);
  box-shadow: 0 10px 30px rgba(129, 74, 200, 0.32);
}
.ap-step .btn-primary:hover{
  background: linear-gradient(180deg, rgba(163, 99, 229, 0.99), rgba(118, 62, 184, 0.99));
  box-shadow: 0 12px 36px rgba(129, 74, 200, 0.42);
}

.ap-step .ap-next.btn-primary::after{
  content: '›';
  margin-left: 12px;
  font-size: 22px;
  line-height: 1;
  opacity: 0.85;
}


body.ap-en-cours .ap-ciel::before{ opacity: 0.55; }


@media (min-width: 900px){
  .ap-carte{ max-width: 560px; }
}

#ap-30 > .ap-carte{ max-width: 420px; }
@media (min-width: 900px){
  #ap-30 > .ap-carte{ max-width: 780px; }
}

.ap-step .btn-md{ white-space: nowrap; }


#ap-23 .btn-primary{
  box-shadow: 0 14px 44px rgba(129, 74, 200, 0.48), 0 0 0 1px rgba(223, 122, 254, 0.22);
}



.ap-input,
.ap-dmy-field,
.ap-commande input{
  min-height: 44px;
  box-sizing: border-box;
}



.ap-fiche-cle{
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
}

.ap-fiche-val{
  font-size: 17px;
}



.ap-ampm-btn{
  font-size: 18px;
  border-radius: var(--r-md);
}

.ap-chip{
  border-radius: var(--r-md);
}



.ap-area{
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-size: 18px;
  padding: 16px 0;
}

.ap-area:focus{
  border-bottom-color: var(--border-accent);
}
