/* ============================================================
   Tunnel de conversion — Cabinet Fender Patrimoine
   Modale 3 étapes (form → Cal.com → upload) + confirmation
   Aligné sur la DS de l'index.html
   ============================================================ */

/* ----- Overlay + shell ------------------------------------ */

#tunnel-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#tunnel-modal[hidden] { display: none !important; }

#tunnel-modal .tunnel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 43, 43, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: tunnel-fade-in .25s ease;
}

#tunnel-modal .tunnel-shell {
  position: relative;
  z-index: 1;
  background: #EEEAE3;
  width: 100%;
  max-width: 640px;
  max-height: calc(100vh - 32px);
  margin: 16px;
  border-radius: 14px;
  box-shadow:
    0 20px 60px -20px rgba(28,43,43,.35),
    0 8px 25px -10px rgba(28,43,43,.20);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: tunnel-slide-up .35s cubic-bezier(.2,.7,.25,1);
  transition: max-width .25s ease;
}
/* Step 2 (Cal.com) : modale plus large pour les 3 colonnes (info + calendrier + créneaux) */
#tunnel-modal[data-step="2"] .tunnel-shell {
  max-width: 960px;
}
#tunnel-modal[data-step="2"] .tunnel-body {
  padding: 8px 16px 16px;
}

@media (max-width: 640px) {
  #tunnel-modal .tunnel-shell {
    margin: 0;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
}

@keyframes tunnel-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes tunnel-slide-up {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ----- Header (close + progress) -------------------------- */

#tunnel-modal .tunnel-header {
  position: relative;
  padding: 18px 20px 14px;
  border-bottom: 1px solid rgba(28,43,43,0.08);
  flex-shrink: 0;
}
#tunnel-modal .tunnel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  appearance: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
  color: #7A7066;
  cursor: pointer;
  transition: background-color .12s, color .12s;
}
#tunnel-modal .tunnel-close:hover {
  background: rgba(28,43,43,0.06);
  color: #1C2B2B;
}
#tunnel-modal .tunnel-close:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
}

#tunnel-modal .tunnel-progress {
  height: 3px;
  background: rgba(28,43,43,0.10);
  border-radius: 999px;
  overflow: hidden;
  margin-right: 48px;
}
#tunnel-modal .tunnel-progress-fill {
  height: 100%;
  background: #2D5A4E;
  border-radius: 999px;
  width: 33.33%;
  transition: width .35s cubic-bezier(.4,.0,.2,1);
}
#tunnel-modal[data-step="2"] .tunnel-progress-fill { width: 66.66%; }
#tunnel-modal[data-step="3"] .tunnel-progress-fill { width: 100%; }
#tunnel-modal[data-step="4"] .tunnel-progress-fill { width: 100%; }

#tunnel-modal .tunnel-step-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7A7066;
  margin-top: 10px;
}

/* ----- Body (sections) ------------------------------------ */

#tunnel-modal .tunnel-body {
  padding: 24px 28px 28px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  /* Cacher la scrollbar tout en gardant le scroll fonctionnel */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#tunnel-modal .tunnel-body::-webkit-scrollbar {
  display: none;
}
@media (max-width: 640px) {
  #tunnel-modal .tunnel-body {
    padding: 22px 22px 24px;
  }
}

#tunnel-modal .tunnel-step {
  display: none;
}
#tunnel-modal .tunnel-step.is-active {
  display: block;
  animation: tunnel-step-in .3s ease;
}
@keyframes tunnel-step-in {
  from { opacity: 0; transform: translateX(8px); }
  to   { opacity: 1; transform: translateX(0); }
}

#tunnel-modal .tunnel-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #7A7066;
}
#tunnel-modal .tunnel-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw + 0.4rem, 1.85rem);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: #1C2B2B;
  margin-top: 8px;
  max-width: 28ch;
}
#tunnel-modal .tunnel-intro {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(28,43,43,0.75);
  margin-top: 10px;
}

/* ----- Resume banner (sessionStorage recovery) ------------ */

#tunnel-modal .tunnel-resume {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: rgba(45,90,78,0.08);
  border: 1px solid rgba(45,90,78,0.18);
  border-radius: 8px;
  font-size: 13.5px;
  color: #1C2B2B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#tunnel-modal .tunnel-resume button {
  appearance: none;
  border: 0;
  background: transparent;
  font: inherit;
  color: #2D5A4E;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}
#tunnel-modal .tunnel-resume button:hover { color: #244c41; }

/* ----- Form (Step 1) -------------------------------------- */

#tunnel-modal .tunnel-form {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}
#tunnel-modal .tunnel-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#tunnel-modal .tunnel-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  #tunnel-modal .tunnel-field-row {
    grid-template-columns: 1fr;
  }
}

#tunnel-modal .tunnel-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #1C2B2B;
}
#tunnel-modal .tunnel-label .req {
  color: #B8553A;
  margin-left: 2px;
}

#tunnel-modal .tunnel-input {
  appearance: none;
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(28,43,43,0.18);
  border-radius: 8px;
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #1C2B2B;
  transition: border-color .12s, box-shadow .12s;
  outline: none;
}
#tunnel-modal .tunnel-input::placeholder {
  color: rgba(28,43,43,0.35);
}
#tunnel-modal .tunnel-input:hover {
  border-color: rgba(28,43,43,0.28);
}
#tunnel-modal .tunnel-input:focus {
  border-color: #2D5A4E;
  box-shadow: 0 0 0 3px rgba(45,90,78,0.15);
}
#tunnel-modal .tunnel-input.is-invalid {
  border-color: #B8553A;
}
#tunnel-modal .tunnel-input.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(184,85,58,0.15);
}

#tunnel-modal .tunnel-error {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #B8553A;
  margin-top: 2px;
}
#tunnel-modal .tunnel-error[hidden] { display: none; }

#tunnel-modal .tunnel-help {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #7A7066;
  font-style: italic;
}

#tunnel-modal .tunnel-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
#tunnel-modal .tunnel-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #2D5A4E;
  color: #EEEAE3;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: background-color .15s, transform .12s;
  min-width: 200px;
}
#tunnel-modal .tunnel-cta:hover {
  background: #244c41;
}
#tunnel-modal .tunnel-cta:active {
  transform: translateY(1px);
}
#tunnel-modal .tunnel-cta:disabled {
  background: rgba(45,90,78,0.45);
  cursor: not-allowed;
  transform: none;
}
#tunnel-modal .tunnel-cta:focus-visible {
  outline: 3px solid rgba(45,90,78,0.4);
  outline-offset: 2px;
}

#tunnel-modal .tunnel-cta-secondary {
  appearance: none;
  border: 0;
  background: transparent;
  color: #7A7066;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  cursor: pointer;
  padding: 6px 8px;
}
#tunnel-modal .tunnel-cta-secondary:hover { color: #1C2B2B; }

#tunnel-modal .tunnel-rgpd {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  line-height: 1.55;
  color: #7A7066;
  margin-top: 14px;
  text-align: center;
}
#tunnel-modal .tunnel-rgpd a {
  color: #2D5A4E;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ----- Bouton retour (typo légère) ----------------------- */
#tunnel-modal .tunnel-back {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #7A7066;
  cursor: pointer;
  padding: 4px 0 6px;
  margin: 0;
  letter-spacing: 0.005em;
  transition: color .12s;
}
#tunnel-modal .tunnel-back:hover {
  color: #1C2B2B;
}
#tunnel-modal .tunnel-back:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----- Step 2 — Calendrier custom (Cal.com API) ----------- */

/* Colonne info (event details) */
#tunnel-modal .cal-info {
  padding: 4px 0;
}
#tunnel-modal .cal-info-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A7066;
  margin: 0 0 10px;
}
#tunnel-modal .cal-info-title {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: #1C2B2B;
  margin: 0 0 14px;
}
#tunnel-modal .cal-info-with {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: rgba(28,43,43,0.75);
  margin: 0 0 18px;
}
#tunnel-modal .cal-info-with strong {
  color: #1C2B2B;
  font-weight: 500;
}
#tunnel-modal .cal-info-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #1C2B2B;
}
#tunnel-modal .cal-info-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}
#tunnel-modal .cal-info-icon {
  display: inline-flex;
  width: 14px;
  height: 14px;
  color: #7A7066;
  flex-shrink: 0;
}
@media (min-width: 880px) {
  #tunnel-modal .cal-info {
    border-right: 1px solid rgba(28,43,43,0.10);
    padding-right: 24px;
    min-height: 320px;
  }
}
@media (max-width: 879px) {
  #tunnel-modal .cal-info {
    padding-bottom: 12px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(28,43,43,0.10);
  }
}

#tunnel-modal #tunnel-cal-mount {
  width: 100%;
}

#tunnel-modal .cal-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 8px 4px 4px;
}
@media (min-width: 880px) {
  #tunnel-modal .cal-wrap {
    grid-template-columns: minmax(220px, 240px) auto minmax(180px, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 12px 28px;
    align-items: start;
  }
  #tunnel-modal .cal-info       { grid-column: 1; grid-row: 1 / 4; }
  #tunnel-modal .cal-header     { grid-column: 2; grid-row: 1; }
  #tunnel-modal .cal-weekdays   { grid-column: 2; grid-row: 2; }
  #tunnel-modal .cal-grid       { grid-column: 2; grid-row: 3; }
  #tunnel-modal .cal-slots-panel{ grid-column: 3; grid-row: 1 / 4; }
}

/* Header — month label à gauche, navigation groupée à droite */
#tunnel-modal .cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 6px;
}
#tunnel-modal .cal-month-label {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 18px;
  color: #1C2B2B;
  text-transform: capitalize;
  letter-spacing: -0.005em;
}
#tunnel-modal .cal-nav-group {
  display: flex;
  gap: 4px;
}
#tunnel-modal .cal-nav {
  appearance: none;
  border: 0;
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  color: #1C2B2B;
  cursor: pointer;
  transition: background-color .12s;
}
#tunnel-modal .cal-nav:hover:not(:disabled) {
  background: rgba(28,43,43,0.08);
}
#tunnel-modal .cal-nav:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
}
#tunnel-modal .cal-nav:disabled {
  color: rgba(28,43,43,0.25);
  cursor: not-allowed;
}

/* Weekdays — colonnes fixes 40 px alignées avec les jours */
#tunnel-modal .cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 40px);
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 4px 0 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A7066;
}
#tunnel-modal .cal-weekdays > div { text-align: center; }

/* Grid — colonnes fixes pour gap uniforme horizontal/vertical */
#tunnel-modal .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 40px);
  justify-content: center;
  gap: 4px;
}

#tunnel-modal .cal-day {
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1C2B2B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color .12s, color .12s;
}
#tunnel-modal .cal-day--empty {
  pointer-events: none;
}
#tunnel-modal .cal-day--available {
  background: rgba(45,90,78,0.10);
  color: #1C2B2B;
}
#tunnel-modal .cal-day--available:hover {
  background: rgba(45,90,78,0.18);
}
#tunnel-modal .cal-day--available:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
}
#tunnel-modal .cal-day--unavailable,
#tunnel-modal .cal-day--disabled {
  color: rgba(28,43,43,0.30);
  cursor: not-allowed;
  font-weight: 400;
}
#tunnel-modal .cal-day--selected {
  background: #2D5A4E !important;
  color: #EEEAE3 !important;
}

/* Today indicator (point sous le chiffre) */
#tunnel-modal .cal-day--today::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2D5A4E;
  transform: translateX(-50%);
}
#tunnel-modal .cal-day--today.cal-day--selected::after {
  background: #EEEAE3;
}

/* Loading skeleton (avant l'API ait répondu) */
#tunnel-modal .cal-day--loading {
  background: rgba(28,43,43,0.06);
  color: transparent !important;
  cursor: default;
  pointer-events: none;
  animation: cal-skeleton 1.4s ease-in-out infinite alternate;
}
@keyframes cal-skeleton {
  from { background-color: rgba(28,43,43,0.05); }
  to   { background-color: rgba(28,43,43,0.10); }
}

/* Slots panel */
#tunnel-modal .cal-slots-panel {
  padding: 4px 0;
}
@media (min-width: 880px) {
  #tunnel-modal .cal-slots-panel {
    border-left: 1px solid rgba(28,43,43,0.10);
    padding-left: 24px;
    min-height: 320px;
  }
}
#tunnel-modal .cal-slots-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7A7066;
  margin-bottom: 12px;
}
#tunnel-modal .cal-slots-empty {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #7A7066;
  font-style: italic;
}
#tunnel-modal .cal-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 8px;
}
@media (min-width: 720px) {
  #tunnel-modal .cal-slots-grid {
    grid-template-columns: 1fr 1fr;
  }
}
#tunnel-modal .cal-slot {
  appearance: none;
  border: 1px solid rgba(28,43,43,0.18);
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1C2B2B;
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color .12s, background-color .12s, color .12s;
  font-variant-numeric: tabular-nums;
}
#tunnel-modal .cal-slot:hover {
  border-color: #2D5A4E;
  background: #2D5A4E;
  color: #EEEAE3;
}
#tunnel-modal .cal-slot:focus-visible {
  outline: 2px solid #2D5A4E;
  outline-offset: 2px;
}
#tunnel-modal .cal-slot:disabled {
  opacity: 0.6;
  cursor: wait;
}

#tunnel-modal .cal-error {
  grid-column: 1 / -1;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #B8553A;
  text-align: center;
  margin-top: 12px;
}

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

/* ----- Step 3 — Justificatifs (cartouches) ---------------- */

#tunnel-modal .tunnel-title--step3 {
  max-width: 32ch;
}

#tunnel-modal .tunnel-doc-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

#tunnel-modal .tunnel-doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: #FFFFFF;
  border: 1px solid rgba(28,43,43,0.10);
  border-radius: 10px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
#tunnel-modal .tunnel-doc-card.is-uploaded {
  border-color: rgba(45,90,78,0.45);
  background: rgba(45,90,78,0.04);
}
#tunnel-modal .tunnel-doc-card.is-failed {
  border-color: rgba(184,85,58,0.45);
  background: rgba(184,85,58,0.04);
}

#tunnel-modal .doc-card-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(28,43,43,0.06);
  color: #7A7066;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
#tunnel-modal .tunnel-doc-card.is-uploaded .doc-card-icon {
  background: #2D5A4E;
  color: #EEEAE3;
  transform: scale(1.04);
}
#tunnel-modal .doc-card-icon-check { display: none; }
#tunnel-modal .tunnel-doc-card.is-uploaded .doc-card-icon-default { display: none; }
#tunnel-modal .tunnel-doc-card.is-uploaded .doc-card-icon-check { display: block; }

#tunnel-modal .doc-card-body {
  min-width: 0;
}
#tunnel-modal .doc-card-title {
  font-size: 14px;
  font-weight: 500;
  color: #1C2B2B;
  margin: 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
#tunnel-modal .doc-card-tag {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #7A7066;
  background: rgba(28,43,43,0.06);
  padding: 2px 7px;
  border-radius: 999px;
}
#tunnel-modal .doc-card-meta {
  font-size: 12.5px;
  color: #7A7066;
  margin: 3px 0 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#tunnel-modal .tunnel-doc-card.is-uploaded .doc-card-meta {
  color: #2D5A4E;
  font-weight: 500;
}
#tunnel-modal .tunnel-doc-card.is-failed .doc-card-meta {
  color: #B8553A;
}

#tunnel-modal .doc-card-progress {
  height: 3px;
  background: rgba(28,43,43,0.10);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 7px;
  display: none;
}
#tunnel-modal .tunnel-doc-card.is-uploading .doc-card-progress {
  display: block;
}
#tunnel-modal .doc-card-progress-fill {
  height: 100%;
  background: #2D5A4E;
  width: 0;
  transition: width .2s ease;
}

#tunnel-modal .doc-card-action {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
#tunnel-modal .doc-card-btn {
  appearance: none;
  border: 1px solid rgba(45,90,78,0.3);
  background: #FFFFFF;
  color: #2D5A4E;
  padding: 7px 14px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color .15s, border-color .15s, color .15s;
}
#tunnel-modal .doc-card-btn:hover {
  background: rgba(45,90,78,0.08);
  border-color: #2D5A4E;
}
#tunnel-modal .doc-card-btn--ghost {
  border-color: rgba(28,43,43,0.18);
  color: #7A7066;
}
#tunnel-modal .doc-card-btn--ghost:hover {
  background: rgba(184,85,58,0.06);
  border-color: rgba(184,85,58,0.3);
  color: #B8553A;
}

#tunnel-modal .tunnel-step3-help {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(45,90,78,0.06);
  border-left: 2px solid #2D5A4E;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(28,43,43,0.85);
}

/* ----- Step 4 — Confirmation ------------------------------ */

#tunnel-modal .tunnel-confirm {
  text-align: center;
  padding: 8px 0;
}
#tunnel-modal .tunnel-confirm-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(45,90,78,0.10);
  color: #2D5A4E;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 14px;
}
#tunnel-modal .tunnel-recap {
  margin: 18px auto;
  max-width: 360px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(28,43,43,0.10);
  border-radius: 10px;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  font-size: 14px;
}
#tunnel-modal .tunnel-recap dt {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #7A7066;
  align-self: center;
  font-weight: 500;
}
#tunnel-modal .tunnel-recap dd {
  margin: 0;
  color: #1C2B2B;
  font-weight: 500;
}
#tunnel-modal .tunnel-confirm-msg {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(28,43,43,0.78);
  margin: 14px auto;
  max-width: 460px;
}
#tunnel-modal .tunnel-confirm-email {
  font-size: 13.5px;
  color: #7A7066;
  margin-top: 14px;
}

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

/* Lock body scroll when modal open */
body.tunnel-open {
  overflow: hidden;
}
