/* [project]/components/constellation-delta/constellation.css [app-client] (css) */
.mdl-root {
  min-height: 100dvh;
  color: var(--sh-ink);
  background: radial-gradient(ellipse at 50% 0%, #c9a84c14, transparent 55%),
    radial-gradient(ellipse at center, #15121f 0%, var(--sh-bg) 70%);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow-x: clip;
}

.mdl-gate {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
  padding: clamp(2rem, 7vh, 5rem) 1.25rem 3rem;
}

.mdl-gate-eyebrow {
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sh-gold);
  margin-bottom: .7rem;
  font-size: .78rem;
}

.mdl-gate-title {
  font-family: var(--font-serif), Georgia, serif;
  color: var(--sh-gold-l);
  margin-bottom: .5rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-style: italic;
  font-weight: 500;
}

.mdl-gate-sub {
  color: var(--sh-muted);
  max-width: 38ch;
  margin: 0 auto 2.2rem;
  font-size: .98rem;
}

.mdl-gate-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  width: min(880px, 100%);
  display: grid;
}

.mdl-gate-grid--roles {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.mdl-gate-card {
  text-align: left;
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  cursor: pointer;
  color: var(--sh-ink);
  border-radius: 16px;
  flex-direction: column;
  align-items: flex-start;
  gap: .35rem;
  padding: 1.2rem 1.3rem;
  font-family: inherit;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  display: flex;
}

.mdl-gate-card:hover {
  border-color: #c9a84c8c;
  transform: translateY(-3px);
  box-shadow: 0 10px 34px #0006, 0 0 0 1px #c9a84c40;
}

.mdl-gate-emoji {
  font-size: 1.7rem;
}

.mdl-gate-label {
  font-family: var(--font-serif), Georgia, serif;
  color: var(--sh-gold-l);
  font-size: 1.2rem;
}

.mdl-gate-base {
  color: var(--sh-muted);
  font-size: .85rem;
  line-height: 1.45;
}

.mdl-gate-back {
  color: var(--sh-muted);
  cursor: pointer;
  background: none;
  border: none;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  padding: .3rem 0;
  font-family: inherit;
  font-size: .85rem;
}

.mdl-gate-back:hover {
  color: var(--sh-gold);
}

.mdl-header {
  z-index: 2;
  text-align: center;
  padding: 1.5rem 1.5rem .25rem;
  position: relative;
}

.mdl-header h1 {
  font-family: var(--font-serif), Georgia, serif;
  color: var(--sh-gold-l);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
}

.mdl-header-ctx {
  color: var(--sh-muted);
  letter-spacing: .03em;
  margin-top: .4rem;
  font-size: .85rem;
}

.mdl-header-ctx strong {
  color: var(--sh-ink);
  font-weight: 500;
}

.mdl-header-edit {
  color: var(--sh-gold);
  cursor: pointer;
  text-underline-offset: 2px;
  background: none;
  border: none;
  margin-left: .6rem;
  font-family: inherit;
  font-size: .8rem;
  text-decoration: underline;
}

.mdl-stage {
  z-index: 1;
  aspect-ratio: 1;
  flex: 1;
  width: min(720px, 92vw);
  max-height: calc(100dvh - 220px);
  margin: .5rem auto;
  position: relative;
}

.mdl-links {
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.mdl-link {
  stroke: #c9a84c24;
  stroke-width: 1px;
  opacity: .5;
  transition: stroke .6s, opacity .6s;
}

.mdl-link--on {
  stroke: #e8c96b8c;
  opacity: 1;
  stroke-dasharray: 3 7;
  animation: 6s linear infinite mdlFlow;
}

@keyframes mdlFlow {
  to {
    stroke-dashoffset: -100px;
  }
}

.mdl-core {
  z-index: 3;
  aspect-ratio: 1;
  text-align: center;
  pointer-events: none;
  background: radial-gradient(circle at 32% 30%, #c9a84c33, #0000 65%);
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(140px, 26%, 190px);
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mdl-core:before {
  content: "";
  border: 1px dashed #c9a84c4d;
  border-radius: 50%;
  animation: 4s ease-in-out infinite mdlPulse;
  position: absolute;
  inset: 0;
}

.mdl-core:after {
  content: "";
  border: 1px solid #c9a84c1a;
  border-radius: 50%;
  animation: 4s ease-in-out 1s infinite mdlPulse;
  position: absolute;
  inset: -10px;
}

@keyframes mdlPulse {
  0%, 100% {
    opacity: .6;
    transform: scale(1);
  }

  50% {
    opacity: .95;
    transform: scale(1.07);
  }
}

.mdl-core-label {
  font-family: var(--font-serif), Georgia, serif;
  color: var(--sh-gold-l);
  text-shadow: 0 0 14px #c9a84c66;
  margin-bottom: .4rem;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  font-style: italic;
}

.mdl-core-count {
  color: var(--sh-muted);
  letter-spacing: .04em;
  font-size: .72rem;
}

.mdl-core-count strong {
  color: var(--sh-gold);
}

.mdl-star {
  z-index: 4;
  text-align: center;
  cursor: pointer;
  width: clamp(96px, 17%, 130px);
  color: inherit;
  background: none;
  border: none;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-family: inherit;
  transition: transform .25s;
  display: flex;
  position: absolute;
  transform: translate(-50%, -50%);
}

.mdl-star:hover {
  transform: translate(-50%, -50%)scale(1.09);
}

.mdl-star-icon {
  background: radial-gradient(circle at 30% 30%, var(--sh-card), #0e0c16);
  border: 1px solid var(--sh-muted);
  width: 54px;
  height: 54px;
  color: var(--sh-muted);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.35rem;
  transition: all .4s;
  display: flex;
  position: relative;
}

.mdl-star--opt .mdl-star-icon {
  opacity: .9;
  border-style: dashed;
}

.mdl-star--on .mdl-star-icon {
  color: #0e0c16;
  background: radial-gradient(circle at 30% 30%, #fff4dc, var(--sh-gold-l));
  border-color: var(--sh-gold-l);
  animation: 2.4s ease-in-out infinite mdlTwinkle;
  box-shadow: 0 0 22px #e8c96b66;
}

.mdl-star--on .mdl-star-icon:after {
  content: "";
  border: 1px solid #e8c96b59;
  border-radius: 50%;
  animation: 3s ease-in-out infinite mdlHalo;
  position: absolute;
  inset: -6px;
}

@keyframes mdlTwinkle {
  0%, 100% {
    box-shadow: 0 0 22px #e8c96b66;
  }

  50% {
    box-shadow: 0 0 34px #e8c96bb3;
  }
}

@keyframes mdlHalo {
  0%, 100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.25);
  }
}

.mdl-star-label {
  color: var(--sh-muted);
  font-size: .85rem;
  font-weight: 500;
  transition: color .3s;
}

.mdl-star--on .mdl-star-label {
  color: var(--sh-gold-l);
}

.mdl-star-opt-mark {
  color: var(--sh-gold);
  font-size: .7em;
}

.mdl-star-hint {
  color: var(--sh-muted);
  opacity: .75;
  font-size: .68rem;
  font-style: italic;
}

.mdl-footer {
  z-index: 5;
  text-align: center;
  background: linear-gradient(to top, var(--sh-bg) 30%, transparent);
  padding: 1rem 1.5rem 1.6rem;
  position: sticky;
  bottom: 0;
}

.mdl-progress {
  color: var(--sh-muted);
  margin-bottom: .7rem;
  font-size: .82rem;
}

.mdl-progress strong {
  color: var(--sh-gold-l);
}

.mdl-cta {
  background: linear-gradient(135deg, var(--sh-gold), var(--sh-gold-l));
  color: #0e0c16;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  border-radius: 50px;
  padding: .85rem 2.4rem;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 0 24px #c9a84c59;
}

.mdl-cta:hover:not(:disabled) {
  transform: translateY(-2px);
}

.mdl-cta:disabled {
  color: var(--sh-muted);
  border: 1px dashed var(--sh-muted);
  box-shadow: none;
  cursor: not-allowed;
  background: none;
}

.mdl-footer-hint {
  color: var(--sh-muted);
  margin-top: .6rem;
  font-size: .78rem;
}

.mdl-footer-hint em {
  color: var(--sh-gold);
  font-style: italic;
}

.mdl-error {
  color: #e8b4a0;
  margin-bottom: .7rem;
  font-size: .85rem;
}

.mdl-overlay {
  z-index: 50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #06050ca8;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  animation: .35s mdlFade;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes mdlFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.mdl-card {
  color: #3a2e1e;
  background: radial-gradient(at 18% 22%, #f4dcaf8c, #0000 55%), radial-gradient(at 80% 80%, #e8c96b2e, #0000 60%), linear-gradient(140deg, #f4ead2 0%, #ecdfb8 55%, #d8c692 100%);
  border: 1px solid #b48c3c8c;
  border-radius: 14px 18px 12px 16px;
  width: min(600px, 96vw);
  max-height: 88dvh;
  padding: 2.6rem 2.3rem 2.2rem;
  animation: .45s cubic-bezier(.25, 1, .3, 1) mdlOpen;
  position: relative;
  overflow-y: auto;
  box-shadow: inset 0 0 0 1px #fffae666, 0 24px 80px #0000008c, 0 0 60px #e8c96b2e;
}

@keyframes mdlOpen {
  from {
    opacity: 0;
    transform: scale(.9)translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.mdl-close {
  cursor: pointer;
  color: #6e5a3a;
  background: #fffcf080;
  border: 1px solid #b48c3c4d;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  line-height: 1;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: .8rem;
  right: 1rem;
}

.mdl-close:hover {
  color: #3a2e1e;
  background: #fffcf0e6;
}

.mdl-card-icon {
  background: radial-gradient(circle at 30% 30%, #ffe6a8, #d4a85a);
  border: 1px solid #b48c3ca6;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  font-size: 1.55rem;
  display: flex;
  box-shadow: 0 4px 18px #b48c3c4d;
}

.mdl-card-title {
  font-family: var(--font-serif), Georgia, serif;
  color: #5c4422;
  text-shadow: 0 1px #fff5dc99;
  margin-bottom: .35rem;
  font-size: 1.85rem;
  font-style: italic;
  font-weight: 500;
}

.mdl-card-q {
  color: #6e5a3a;
  margin-bottom: .6rem;
  font-size: .95rem;
  line-height: 1.5;
}

.mdl-card-suggest {
  color: #7a6440;
  background: #fffcf080;
  border-left: 2px solid #b48c3c80;
  border-radius: 4px;
  margin-bottom: .6rem;
  padding: .55rem .8rem;
  font-size: .85rem;
  line-height: 1.45;
}

.mdl-card-suggest em {
  color: #5c4422;
}

.mdl-field {
  margin-top: .4rem;
}

.mdl-label {
  color: #5c4422;
  letter-spacing: .02em;
  margin: 1.1rem 0 .4rem;
  font-size: .82rem;
  font-weight: 500;
  display: block;
}

.mdl-textarea {
  color: #3a2e1e;
  resize: vertical;
  background: #fffcf0a6;
  border: 1px solid #b48c3c66;
  border-radius: 6px;
  width: 100%;
  padding: .75rem 1rem;
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.55;
  box-shadow: inset 0 1px 2px #00000014;
}

.mdl-textarea::placeholder {
  color: #6e5a3a8c;
  font-style: italic;
}

.mdl-textarea:focus {
  background: #fffcf0e0;
  border-color: #b48c3c;
  outline: none;
}

.mdl-chips {
  flex-wrap: wrap;
  gap: .45rem;
  display: flex;
}

.mdl-chip {
  color: #5c4422;
  cursor: pointer;
  background: #fffcf080;
  border: 1px solid #b48c3c66;
  border-radius: 20px;
  align-items: center;
  gap: .35rem;
  padding: .4rem .85rem;
  font-family: inherit;
  font-size: .85rem;
  transition: all .18s;
  display: inline-flex;
}

.mdl-chip:hover {
  border-color: #b48c3c;
}

.mdl-chip--on {
  color: #3a2e1e;
  background: linear-gradient(135deg, #e9c96b, #d4a85a);
  border-color: #8c6432b3;
  font-weight: 500;
}

.mdl-chip-rank {
  color: #f4ead2;
  background: #5c4422;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 1.1rem;
  height: 1.1rem;
  font-size: .7rem;
  font-weight: 600;
  display: inline-flex;
}

.mdl-segment {
  border: 1px solid #b48c3c73;
  border-radius: 24px;
  display: inline-flex;
  overflow: hidden;
}

.mdl-segment button {
  color: #6e5a3a;
  cursor: pointer;
  background: none;
  border: none;
  padding: .45rem 1.4rem;
  font-family: inherit;
  font-size: .88rem;
  transition: all .18s;
}

.mdl-seg--on {
  font-weight: 500;
  color: #3a2e1e !important;
  background: linear-gradient(135deg, #e9c96b, #d4a85a) !important;
}

.mdl-duree {
  align-items: center;
  gap: 1.2rem;
  margin-top: .5rem;
  display: flex;
}

.mdl-duree-val {
  font-family: var(--font-serif), Georgia, serif;
  color: #5c4422;
  font-size: 2.2rem;
  line-height: 1;
}

.mdl-duree-val small {
  color: #6e5a3a;
  margin-left: .2rem;
  font-size: .8rem;
}

.mdl-range {
  accent-color: #b48c3c;
  flex: 1;
}

.mdl-anec-list {
  flex-direction: column;
  gap: .4rem;
  margin: 0 0 .7rem;
  padding: 0;
  list-style: none;
  display: flex;
}

.mdl-anec-list li {
  color: #5c4422;
  background: #fffcf073;
  border-radius: 6px;
  align-items: center;
  gap: .5rem;
  padding: .4rem .6rem;
  font-size: .88rem;
  display: flex;
}

.mdl-actions {
  gap: .8rem;
  margin-top: 1.8rem;
  display: flex;
}

.mdl-btn-validate {
  color: #fffaf0;
  letter-spacing: .03em;
  cursor: pointer;
  background: linear-gradient(135deg, #d4a85a, #b48c3c);
  border: 1px solid #8c6432b3;
  border-radius: 50px;
  flex: 1;
  padding: .85rem 1.5rem;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px #8c64324d;
}

.mdl-btn-validate:hover {
  filter: brightness(1.05);
}

.mdl-btn-skip {
  color: #6e5a3a;
  cursor: pointer;
  background: none;
  border: 1px solid #b48c3c80;
  border-radius: 50px;
  padding: .85rem 1.5rem;
  font-family: inherit;
  font-size: .9rem;
}

.mdl-btn-skip:hover {
  background: #b48c3c1a;
}

.mdl-generating {
  text-align: center;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  padding: 2rem;
  display: flex;
}

.mdl-generating h2 {
  font-family: var(--font-serif), Georgia, serif;
  color: var(--sh-gold-l);
  font-size: 1.6rem;
  font-style: italic;
}

.mdl-generating p {
  color: var(--sh-muted);
  max-width: 40ch;
}

.mdl-orbit {
  border: 2px solid #c9a84c33;
  border-top-color: var(--sh-gold-l);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
  animation: 1.1s linear infinite mdlSpin;
}

@keyframes mdlSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 720px) {
  .mdl-stage {
    aspect-ratio: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    width: 100%;
    max-height: none;
    padding: 1rem .5rem 0;
    display: grid;
  }

  .mdl-links {
    display: none;
  }

  .mdl-core {
    aspect-ratio: auto;
    border: 1px solid var(--sh-border);
    border-radius: 16px;
    grid-column: 1 / -1;
    width: 100%;
    padding: 1rem;
    position: static;
    transform: none;
  }

  .mdl-star {
    border: 1px solid var(--sh-border);
    background: var(--sh-card);
    border-radius: 14px;
    flex-direction: row;
    justify-content: flex-start;
    gap: .8rem;
    width: 100%;
    padding: .8rem 1rem;
    position: static;
    transform: none;
  }

  .mdl-star:hover {
    transform: none;
  }

  .mdl-star--on {
    border-color: #c9a84c80;
  }

  .mdl-star-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .mdl-star-label, .mdl-star-hint {
    text-align: left;
  }

  .mdl-footer {
    position: static;
  }
}

/*# sourceMappingURL=components_constellation-delta_constellation_1r5la5p.css.map*/