/* E.C.A. Studio — DESIGN-REPÈRE-R1
   Amélioration visuelle de la page actuelle « Votre repère du jour ».
   Aucune règle métier ni connexion n'est modifiée.
*/
#screen-dashboard{
  --nf-home-card:rgba(255,252,245,.92);
  --nf-home-line:rgba(42,37,32,.09);
  --nf-home-shadow:0 10px 28px rgba(73,54,39,.075);
}

#screen-dashboard .nf-v30-home{
  width:min(100%,560px);
  min-height:100dvh;
  margin:0 auto;
  padding:18px 14px calc(116px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 88% 2%,rgba(244,203,168,.30) 0%,rgba(244,203,168,0) 24%),
    radial-gradient(circle at 8% 72%,rgba(74,123,92,.085) 0%,rgba(74,123,92,0) 31%),
    linear-gradient(180deg,#FDF9EE 0%,#F4EDDF 54%,#EEE4D1 100%);
}

#screen-dashboard .nf-v30-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin:0 2px 16px;
}

#screen-dashboard .nf-v30-label{
  font-family:var(--font-mono);
  font-size:.58rem;
  line-height:1.35;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--nf-copper);
  margin-bottom:7px;
}

#screen-dashboard .nf-v30-title{
  font-family:var(--font-serif);
  font-style:italic;
  font-weight:400;
  font-size:clamp(1.95rem,7.2vw,2.2rem);
  line-height:1.04;
  color:var(--nf-ink);
  letter-spacing:-.025em;
}

#screen-dashboard .nf-v30-sub{
  max-width:330px;
  margin-top:7px;
  font-size:.91rem;
  line-height:1.48;
  color:var(--nf-ink-mid);
}

/* REPERE-VALEUR-R1 — statut d'abonnement distinct de la recommandation. */
#screen-dashboard .nf-v30-plan-status{
  display:inline-flex;
  align-items:center;
  gap:7px;
  max-width:100%;
  margin-top:10px;
  padding:6px 10px;
  border:1px solid rgba(110,126,133,.20);
  border-radius:999px;
  background:rgba(255,255,255,.48);
  color:var(--nf-ink-mid);
  font-size:.72rem;
  line-height:1.25;
}

#screen-dashboard .nf-v30-plan-status::before{
  content:"";
  flex:0 0 6px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#4A7B5C;
  box-shadow:0 0 0 3px rgba(74,123,92,.10);
}

#screen-dashboard .nf-v30-orb{
  position:relative;
  flex:0 0 58px;
  width:58px;
  height:58px;
  margin-top:4px;
  border-radius:50%;
  background:radial-gradient(circle at 34% 28%,#F7D1B2 0%,#DA7A58 47%,#813C22 100%);
  box-shadow:inset -7px -9px 18px rgba(50,21,10,.24),0 10px 26px rgba(196,103,66,.23);
  animation:nfV30Breath 6s ease-in-out infinite;
}

#screen-dashboard .nf-v30-orb::before{
  content:"";
  position:absolute;
  inset:-9px;
  border:1px solid rgba(196,103,66,.16);
  border-radius:50%;
  animation:nfV30Pulse 3.4s ease-out infinite;
}

@keyframes nfV30Breath{0%,100%{transform:scale(1)}50%{transform:scale(1.04)}}
@keyframes nfV30Pulse{0%{transform:scale(.94);opacity:.68}100%{transform:scale(1.23);opacity:0}}

#screen-dashboard .nf-v30-card{
  margin-bottom:12px;
  padding:17px;
  overflow:hidden;
  border:1px solid var(--nf-home-line);
  border-radius:20px;
  background:var(--nf-home-card);
  box-shadow:var(--nf-home-shadow);
  backdrop-filter:blur(7px);
}

#screen-dashboard .nf-v30-practice{
  position:relative;
  padding-top:19px;
  border-color:rgba(74,123,92,.25);
  background:linear-gradient(145deg,rgba(250,249,238,.96),rgba(234,240,225,.78));
  box-shadow:0 12px 30px rgba(74,123,92,.085);
}

#screen-dashboard .nf-v30-practice::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:4px;
  background:linear-gradient(180deg,#6D9478,#AFC3AE);
}

#screen-dashboard .nf-v30-card-title{
  margin-bottom:5px;
  font-family:var(--font-serif);
  font-style:italic;
  font-size:clamp(1.42rem,5.6vw,1.62rem);
  line-height:1.12;
  color:var(--nf-ink);
}

#screen-dashboard .nf-v30-muted{
  font-size:.86rem;
  line-height:1.48;
  color:var(--nf-ink-mid);
}

#screen-dashboard .nf-v30-actions{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:9px;
  margin-top:15px;
}

#screen-dashboard .nf-v30-btn,
#screen-dashboard .nf-v30-schedule{
  min-height:46px;
  width:100%;
  border:0;
  border-radius:999px;
  padding:12px 15px;
  font-family:var(--font-ui);
  font-size:.89rem;
  font-weight:650;
  line-height:1.2;
  cursor:pointer;
  transition:transform .16s ease,box-shadow .16s ease,background .16s ease;
}

#screen-dashboard .nf-v30-btn{
  background:var(--nf-copper);
  color:#FDF9EE;
  box-shadow:0 7px 17px rgba(196,103,66,.18);
}

#screen-dashboard .nf-v30-btn.secondary{
  border:1px solid rgba(196,103,66,.25);
  background:rgba(255,252,245,.78);
  color:var(--nf-copper);
  box-shadow:none;
}

#screen-dashboard .nf-v30-schedule{
  display:flex;
  align-items:center;
  justify-content:center;
  margin:1px 0 12px !important;
  border:1px solid rgba(196,103,66,.92) !important;
  background:linear-gradient(135deg,#C46742,#D77750) !important;
  color:#FDF9EE !important;
  box-shadow:0 8px 20px rgba(196,103,66,.17);
}

#screen-dashboard .nf-v30-btn:active,
#screen-dashboard .nf-v30-schedule:active,
#screen-dashboard .nf-v30-mini:active{transform:scale(.985)}

#screen-dashboard .nf-v30-btn:focus-visible,
#screen-dashboard .nf-v30-schedule:focus-visible,
#screen-dashboard .nf-v30-mini:focus-visible{
  outline:3px solid rgba(196,103,66,.23);
  outline-offset:2px;
}

#screen-dashboard .nf-v30-rhythm{
  padding-top:16px;
  padding-bottom:11px;
}

#screen-dashboard .nf-v30-rhythm .nf-v30-label{margin-bottom:4px}

#screen-dashboard .nf-v30-row{
  display:grid;
  grid-template-columns:minmax(76px,.72fr) minmax(0,1.28fr);
  align-items:center;
  gap:12px;
  min-height:38px;
  padding:8px 0;
  border-bottom:1px solid rgba(42,37,32,.075);
}

#screen-dashboard .nf-v30-row:last-child{border-bottom:none}

#screen-dashboard .nf-v30-row span{
  padding:0;
  font-family:var(--font-ui);
  font-size:.77rem;
  line-height:1.25;
  letter-spacing:.015em;
  text-transform:none;
  color:#83766A;
}

#screen-dashboard .nf-v30-row strong{
  min-width:0;
  font-size:.86rem;
  line-height:1.32;
  text-align:right;
  overflow-wrap:anywhere;
  color:var(--nf-ink);
}

#screen-dashboard .nf-v30-mini-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:9px;
  margin-bottom:12px;
}

#screen-dashboard .nf-v30-mini{
  position:relative;
  min-width:0;
  min-height:108px;
  padding:14px 13px 13px;
  text-align:left;
  border:1px solid rgba(42,37,32,.085);
  border-radius:18px;
  background:rgba(255,252,245,.82);
  box-shadow:0 7px 20px rgba(73,54,39,.05);
  color:inherit;
  cursor:pointer;
}

#screen-dashboard .nf-v30-mini::after{
  content:"›";
  position:absolute;
  top:13px;
  right:13px;
  font-size:1.2rem;
  line-height:1;
  color:rgba(196,103,66,.68);
}

#screen-dashboard .nf-v30-mini .ico{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  margin-bottom:8px;
  border-radius:50%;
  background:rgba(196,103,66,.09);
  color:var(--nf-copper);
  font-size:1rem;
}

#screen-dashboard .nf-v30-mini strong{
  display:block;
  max-width:calc(100% - 12px);
  margin-bottom:4px;
  font-size:.86rem;
  line-height:1.24;
  color:var(--nf-ink);
}

#screen-dashboard .nf-v30-mini .nf-v30-muted{
  font-size:.76rem;
  line-height:1.4;
}

#screen-dashboard .nf-v30-tip{
  position:relative;
  padding-left:20px;
  background:linear-gradient(135deg,rgba(255,252,245,.94),rgba(246,237,222,.91));
}

#screen-dashboard .nf-v30-tip::before{
  content:"";
  position:absolute;
  left:0;
  top:14px;
  bottom:14px;
  width:3px;
  border-radius:0 3px 3px 0;
  background:rgba(196,103,66,.55);
}

#screen-dashboard #nf-v30-progress-card:empty{display:none}
#screen-dashboard #nf-v30-progress-card>.nf-v30-card{margin-bottom:12px}

#screen-dashboard .nf-v30-progress{
  background:linear-gradient(145deg,rgba(255,252,245,.95),rgba(240,238,222,.86));
}

#screen-dashboard .nf-v30-presence{
  position:relative;
  border:1px solid rgba(196,103,66,.17);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(255,248,239,.94),rgba(239,225,201,.84));
  box-shadow:0 10px 26px rgba(109,74,49,.07);
}

#screen-dashboard .nf-v30-presence::before{
  content:"✦";
  position:absolute;
  top:14px;
  right:16px;
  color:rgba(196,103,66,.50);
  font-size:.92rem;
}

#screen-dashboard .nf-v30-note{
  padding-right:12px;
  font-family:var(--font-serif);
  font-style:italic;
  font-size:.98rem;
  line-height:1.48;
  color:var(--nf-ink);
}

#screen-dashboard #nf-v30-companion-actions{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin-top:13px !important;
}

#screen-dashboard #nf-v30-companion-actions .nf-v30-btn:only-child{grid-column:1/-1}

#screen-dashboard .nf-v30-update{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) auto;
  grid-template-areas:"label action" "state action";
  align-items:center;
  column-gap:12px;
  row-gap:2px;
  margin-top:12px !important;
  padding:14px 15px;
  border-color:rgba(74,123,92,.20) !important;
  background:rgba(250,250,241,.86);
  box-shadow:0 7px 19px rgba(74,123,92,.055);
}

#screen-dashboard .nf-v30-update>.nf-v30-label{
  grid-area:label;
  margin-bottom:2px;
}

#screen-dashboard .nf-v30-update>.nf-v30-note{
  grid-area:state;
  padding:0;
  font-family:var(--font-ui);
  font-style:normal;
  font-size:.84rem;
  line-height:1.3;
}

#screen-dashboard .nf-v30-update>div:last-child{
  grid-area:action;
  margin:0 !important;
}

#screen-dashboard .nf-v30-update .nf-v30-btn{
  width:auto;
  min-height:40px;
  padding:10px 13px;
  font-size:.78rem;
  white-space:nowrap;
  box-shadow:none;
}

@media (hover:hover){
  #screen-dashboard .nf-v30-btn:hover,
  #screen-dashboard .nf-v30-schedule:hover,
  #screen-dashboard .nf-v30-mini:hover{transform:translateY(-1px)}
  #screen-dashboard .nf-v30-mini:hover{box-shadow:0 10px 24px rgba(73,54,39,.075)}
}

@media (max-width:360px){
  #screen-dashboard .nf-v30-home{padding-left:11px;padding-right:11px}
  #screen-dashboard .nf-v30-orb{width:52px;height:52px;flex-basis:52px}
  #screen-dashboard .nf-v30-actions{grid-template-columns:1fr}
  #screen-dashboard .nf-v30-mini-grid{grid-template-columns:1fr}
  #screen-dashboard .nf-v30-mini{min-height:94px}
  #screen-dashboard #nf-v30-companion-actions{grid-template-columns:1fr}
  #screen-dashboard .nf-v30-update{
    grid-template-columns:1fr;
    grid-template-areas:"label" "state" "action";
  }
  #screen-dashboard .nf-v30-update .nf-v30-btn{width:100%;margin-top:8px}
}

@media (prefers-reduced-motion:reduce){
  #screen-dashboard .nf-v30-orb,
  #screen-dashboard .nf-v30-orb::before{animation:none}
  #screen-dashboard .nf-v30-btn,
  #screen-dashboard .nf-v30-schedule,
  #screen-dashboard .nf-v30-mini{transition:none}
}

/* UX-1-R1 — boucle visible en permanence, divulgation progressive smartphone */
#screen-dashboard .nf-v30-home-ux1r1{
  padding-top:16px;
}

#screen-dashboard .nf-v30-practice-focus{
  padding:20px 18px 18px;
  box-shadow:0 15px 34px rgba(74,123,92,.11);
}

#screen-dashboard .nf-v30-practice-focus .nf-v30-practice-meta{
  margin-bottom:8px;
  font-size:.82rem;
}

#screen-dashboard .nf-v30-practice-focus .nf-v30-practice-why{
  font-size:.9rem;
  line-height:1.5;
}

#screen-dashboard .nf-v30-focus-context{
  margin-top:14px;
  padding:12px 13px;
  border:1px solid rgba(74,123,92,.14);
  border-radius:14px;
  background:rgba(255,255,255,.42);
}

#screen-dashboard .nf-v30-focus-context span,
#screen-dashboard .nf-v30-focus-context strong{
  display:block;
}

#screen-dashboard .nf-v30-focus-context span{
  margin-bottom:4px;
  font-family:var(--font-mono);
  font-size:.56rem;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:#4A7B5C;
}

#screen-dashboard .nf-v30-focus-context strong{
  font-size:.81rem;
  font-weight:500;
  line-height:1.45;
  color:var(--nf-ink-mid);
}

#screen-dashboard .nf-v30-main-action{
  display:grid;
  gap:10px;
  margin-top:16px;
}

#screen-dashboard .nf-v30-main-action .nf-v30-btn{
  min-height:52px;
  font-size:.95rem;
  box-shadow:0 10px 22px rgba(196,103,66,.22);
}

/* REPERE-PROGRAMMATION-R1 — action secondaire visible sans alourdir la carte. */
#screen-dashboard .nf-v30-main-action .nf-v30-direct-schedule{
  min-height:46px;
  background:rgba(255,252,245,.78);
  color:var(--nf-copper);
  border:1px solid rgba(196,103,66,.35);
  box-shadow:none;
}

#screen-dashboard details.nf-v30-disclosure{
  padding:0;
  overflow:hidden;
}

#screen-dashboard details.nf-v30-disclosure>summary{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:70px;
  padding:15px 17px;
  list-style:none;
  cursor:pointer;
  user-select:none;
}

#screen-dashboard details.nf-v30-disclosure>summary::-webkit-details-marker{display:none}

#screen-dashboard details.nf-v30-disclosure>summary>span:first-child{
  min-width:0;
}

#screen-dashboard details.nf-v30-disclosure>summary .nf-v30-label{
  margin-bottom:4px;
}

#screen-dashboard details.nf-v30-disclosure>summary strong{
  display:block;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-size:.82rem;
  font-weight:550;
  color:var(--nf-ink-mid);
}

#screen-dashboard .nf-v30-disclosure-state{
  position:relative;
  flex:0 0 32px;
  width:32px;
  height:32px;
  border-radius:50%;
  background:rgba(196,103,66,.08);
}

#screen-dashboard .nf-v30-disclosure-state::before,
#screen-dashboard .nf-v30-disclosure-state::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:10px;
  height:1.5px;
  border-radius:999px;
  background:var(--nf-copper);
  transform:translate(-50%,-50%);
  transition:transform .18s ease;
}

#screen-dashboard .nf-v30-disclosure-state::after{
  transform:translate(-50%,-50%) rotate(90deg);
}

#screen-dashboard details[open] .nf-v30-disclosure-state::after{
  transform:translate(-50%,-50%) rotate(0deg);
}

#screen-dashboard .nf-v30-more{
  margin-bottom:12px;
  background:rgba(255,252,245,.73);
  box-shadow:0 6px 18px rgba(73,54,39,.045);
}

#screen-dashboard .nf-v30-option-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  padding:0 14px 14px;
}

#screen-dashboard .nf-v30-option{
  display:flex;
  align-items:flex-start;
  gap:10px;
  min-height:82px;
  padding:12px;
  text-align:left;
  border:1px solid rgba(42,37,32,.075);
  border-radius:15px;
  background:rgba(255,255,255,.46);
  color:inherit;
  cursor:pointer;
}

#screen-dashboard .nf-v30-option .ico{
  flex:0 0 30px;
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:rgba(196,103,66,.09);
  color:var(--nf-copper);
  font-size:.94rem;
}

#screen-dashboard .nf-v30-option strong,
#screen-dashboard .nf-v30-option small{
  display:block;
}

#screen-dashboard .nf-v30-option strong{
  margin:1px 0 4px;
  font-size:.8rem;
  line-height:1.25;
  color:var(--nf-ink);
}

#screen-dashboard .nf-v30-option small{
  font-size:.7rem;
  line-height:1.35;
  color:var(--nf-ink-mid);
}

#screen-dashboard .nf-v30-tip{
  margin-bottom:12px;
}

#screen-dashboard .nf-v30-tip-text{
  margin-top:7px;
  font-size:.88rem;
  line-height:1.5;
}

#screen-dashboard .nf-v30-growth-zone{
  padding:16px;
  border-color:rgba(196,103,66,.14);
  background:linear-gradient(145deg,rgba(255,251,244,.96),rgba(242,232,216,.88));
}

#screen-dashboard .nf-v30-growth-intro{
  margin:-1px 0 13px;
  font-size:.79rem;
  line-height:1.45;
  color:var(--nf-ink-mid);
}

#screen-dashboard .nf-v30-growth-zone #nf-v30-progress-card>.nf-v30-card{
  margin:0 !important;
  padding:13px 0 15px;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

#screen-dashboard .nf-v30-growth-zone #nf-v30-progress-card:empty{display:none}

#screen-dashboard .nf-v30-growth-zone #nf-v30-companion-card{
  margin:0;
  padding:15px 0 0;
  border:0;
  border-top:1px solid rgba(42,37,32,.08);
  border-radius:0;
  background:transparent;
  box-shadow:none;
}

#screen-dashboard .nf-v30-growth-zone #nf-v30-progress-card:empty + #nf-v30-companion-card{
  padding-top:4px;
  border-top:0;
}

#screen-dashboard .nf-v30-growth-zone .nf-v30-presence::before{
  top:14px;
  right:2px;
}

#screen-dashboard .nf-v30-growth-zone #nf-v30-companion-actions{
  margin-top:12px !important;
}

#screen-dashboard .nf-v30-rhythm{
  margin-bottom:12px;
  padding:0;
}

#screen-dashboard .nf-v30-rhythm-content{
  padding:0 17px 10px;
  border-top:1px solid rgba(42,37,32,.065);
}

#screen-dashboard .nf-v30-rhythm .nf-v30-row{
  min-height:36px;
}

#screen-dashboard .nf-v30-update{
  margin-top:0 !important;
}

@media (hover:hover){
  #screen-dashboard .nf-v30-option:hover{
    transform:translateY(-1px);
    box-shadow:0 8px 20px rgba(73,54,39,.055);
  }
}

@media (max-width:380px){
  #screen-dashboard .nf-v30-option-grid{grid-template-columns:1fr}
  #screen-dashboard .nf-v30-option{min-height:72px}
  #screen-dashboard details.nf-v30-disclosure>summary strong{max-width:220px}
  #screen-dashboard .nf-v30-growth-zone #nf-v30-companion-actions{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  #screen-dashboard .nf-v30-disclosure-state::before,
  #screen-dashboard .nf-v30-disclosure-state::after,
  #screen-dashboard .nf-v30-option{transition:none}
}


/* DECOUVERTE-INFO-R1 — note unique de première arrivée + rappel dans Évolution */
body.eca-discovery-access-open{overflow:hidden;}
.eca-discovery-access-note{position:fixed;inset:0;z-index:100500;display:flex;align-items:flex-end;justify-content:center;pointer-events:none;opacity:0;transition:opacity .2s ease;}
.eca-discovery-access-note.is-open{pointer-events:auto;opacity:1;}
.eca-discovery-access-backdrop{position:absolute;inset:0;background:rgba(42,37,32,.48);backdrop-filter:blur(2px);}
.eca-discovery-access-sheet{position:relative;width:100%;max-width:520px;max-height:min(88dvh,760px);overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;background:var(--nf-beige,#FDF9EE);border-radius:24px 24px 0 0;padding:18px 20px max(26px,env(safe-area-inset-bottom));box-sizing:border-box;box-shadow:0 -16px 52px rgba(42,37,32,.22);transform:translateY(28px);transition:transform .22s ease;}
.eca-discovery-access-note.is-open .eca-discovery-access-sheet{transform:translateY(0);}
.eca-discovery-access-grip{width:42px;height:4px;border-radius:999px;background:rgba(42,37,32,.18);margin:0 auto 15px;}
.eca-discovery-access-close{position:absolute;top:13px;right:14px;width:38px;height:38px;border:0;border-radius:50%;background:rgba(255,255,255,.82);color:var(--nf-ink,#2A2520);font-size:1.55rem;line-height:1;display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 10px rgba(42,37,32,.08);}
.eca-discovery-access-close:focus-visible{outline:3px solid rgba(78,140,150,.38);outline-offset:2px;}
.eca-discovery-access-kicker{font-family:var(--font-mono,monospace);font-size:.55rem;letter-spacing:.14em;text-transform:uppercase;color:var(--nf-copper,#C46742);padding-right:48px;margin-bottom:7px;}
.eca-discovery-access-sheet h2{font-family:var(--font-serif,serif);font-style:italic;font-size:1.62rem;line-height:1.12;color:var(--nf-ink,#2A2520);margin:0 46px 14px 0;}
.eca-discovery-access-body{display:grid;gap:12px;color:var(--nf-ink-mid,#62594F);font-size:.94rem;line-height:1.55;}
.eca-discovery-access-body p{margin:0;}
.eca-discovery-access-body strong{color:var(--nf-ink,#2A2520);font-weight:700;}
.eca-discovery-access-foot{margin-top:16px;padding-top:13px;border-top:1px solid rgba(42,37,32,.09);font-size:.76rem;line-height:1.4;color:var(--nf-ink-mid,#746A60);}
#screen-evolution .nf-evo-discovery-info{background:linear-gradient(145deg,rgba(168,218,220,.18),rgba(255,255,255,.92));border-color:rgba(78,140,150,.18);}
#screen-evolution .nf-evo-discovery-info p{margin:0 0 11px;color:var(--nf-ink-mid,#62594F);font-size:.9rem;line-height:1.55;}
#screen-evolution .nf-evo-discovery-info p:last-child{margin-bottom:0;}
#screen-evolution .nf-evo-discovery-info strong{color:var(--nf-ink,#2A2520);font-weight:700;}
@media (min-width:700px){
  .eca-discovery-access-note{align-items:center;padding:24px;box-sizing:border-box;}
  .eca-discovery-access-sheet{border-radius:24px;max-height:min(82dvh,720px);padding:25px 28px 28px;transform:translateY(18px) scale(.985);}
  .eca-discovery-access-note.is-open .eca-discovery-access-sheet{transform:translateY(0) scale(1);}
  .eca-discovery-access-grip{display:none;}
  .eca-discovery-access-close{top:17px;right:18px;}
  .eca-discovery-access-sheet h2{font-size:1.78rem;}
}
@media (prefers-reduced-motion:reduce){
  .eca-discovery-access-note,.eca-discovery-access-sheet{transition:none!important;}
}
