/* Lumen Capsule — independent account visual system (Appily Sixtyfive) */

:root {
  --lx-void: #12161F;
  --lx-ink: #1A2230;
  --lx-mute: #6B7A8F;
  --lx-fog: #E8EEF7;
  --lx-glass: rgba(255, 255, 255, 0.55);
  --lx-glass-strong: rgba(255, 255, 255, 0.72);
  --lx-stroke: rgba(26, 34, 48, 0.1);
  --lx-cyan: #00A8C5;
  --lx-cyan-soft: #7DE3F0;
  --lx-rose: #FF5C6C;
  --lx-rose-deep: #E23B4C;
  --lx-ok: #1F8A6B;
  --lx-warn: #C45C1A;
  --font-display: 'Bricolage Grotesque', 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --lx-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --lx-radius-blob: 2.25rem 0.65rem 2.25rem 0.65rem;
  --lx-radius-soft: 1.35rem 1.35rem 0.55rem 1.35rem;
}

*, *::before, *::after { box-sizing: border-box; }

body.lx-body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--lx-ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(0, 168, 197, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 45% at 100% 0%, rgba(255, 92, 108, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 100%, rgba(125, 227, 240, 0.18), transparent 55%),
    linear-gradient(165deg, #DCE6F4 0%, var(--lx-fog) 42%, #D4E0EF 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.lx-root { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

.lx-orbit {
  position: relative;
  width: min(100% - 1.5rem, 1040px);
  margin: 0 auto;
  padding: 1.35rem 0 3rem;
  isolation: isolate;
}

/* Floating color orbs */
.lx-aura {
  position: absolute;
  inset: -4% -8% auto;
  height: 70%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lx-blob {
  position: absolute;
  border-radius: 60% 40% 55% 45%;
  filter: blur(2px);
  opacity: 0.55;
  animation: lx-float 14s var(--lx-ease) infinite alternate;
}

.lx-blob-a {
  width: 18rem; height: 18rem;
  left: -4%; top: 8%;
  background: radial-gradient(circle at 30% 30%, var(--lx-cyan-soft), transparent 65%);
}

.lx-blob-b {
  width: 14rem; height: 14rem;
  right: -2%; top: 0;
  background: radial-gradient(circle at 60% 40%, rgba(255, 92, 108, 0.55), transparent 70%);
  animation-delay: -4s;
  border-radius: 40% 60% 35% 65%;
}

.lx-blob-c {
  width: 12rem; height: 12rem;
  left: 42%; top: 28%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 168, 197, 0.25), transparent 70%);
  animation-delay: -8s;
}

@keyframes lx-float {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(12px, -18px, 0) rotate(8deg); }
}

@media (prefers-reduced-motion: reduce) {
  .lx-blob { animation: none; }
}

/* Chrome */
.lx-chrome {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.lx-sigil {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.lx-sigil em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: -0.03em;
  width: 2.55rem;
  height: 2.55rem;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--lx-cyan), #007A99);
  border-radius: 1.1rem 0.35rem 1.1rem 0.35rem;
  box-shadow: 0 10px 24px rgba(0, 168, 197, 0.28);
  transition: transform 0.35s var(--lx-ease), border-radius 0.35s var(--lx-ease);
}

.lx-sigil:hover em {
  transform: rotate(-8deg) scale(1.05);
  border-radius: 0.35rem 1.1rem 0.35rem 1.1rem;
}

.lx-sigil span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.lx-chrome-rail {
  display: flex;
  gap: 0.2rem;
  padding: 0.3rem;
  background: var(--lx-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(18, 22, 31, 0.06);
}

.lx-chrome-rail a {
  text-decoration: none;
  color: var(--lx-ink);
  font-weight: 650;
  font-size: 0.86rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.3s var(--lx-ease);
}

.lx-chrome-rail a:hover {
  background: rgba(0, 168, 197, 0.14);
  color: #007A99;
  transform: translateY(-1px);
}

.lx-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lx-rose);
}

.lx-eyebrow-soft { color: var(--lx-cyan-soft); }

/* Loading */
.lx-loading {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 14rem;
  padding: 2rem;
  text-align: center;
  color: var(--lx-mute);
}

.lx-ring {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 3px solid rgba(0, 168, 197, 0.2);
  border-top-color: var(--lx-cyan);
  animation: lx-spin 0.8s linear infinite;
}

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

/* Logged-in suite */
.lx-suite {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lx-idglass {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.5rem;
  background: var(--lx-glass-strong);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--lx-radius-blob);
  box-shadow:
    0 20px 50px rgba(18, 22, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lx-idglass-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.lx-avatar {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  background: linear-gradient(145deg, var(--lx-rose), #FF8A6B);
  border-radius: 1.4rem 0.4rem 1.4rem 0.4rem;
  box-shadow: 0 12px 28px rgba(255, 92, 108, 0.3);
  transition: border-radius 0.4s var(--lx-ease), transform 0.4s var(--lx-ease);
}

.lx-idglass:hover .lx-avatar {
  border-radius: 0.4rem 1.4rem 0.4rem 1.4rem;
  transform: rotate(-4deg);
}

.lx-idglass-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lx-idglass-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.lx-chip {
  appearance: none;
  border: 1.5px solid var(--lx-stroke);
  background: rgba(255, 255, 255, 0.65);
  color: var(--lx-ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s var(--lx-ease), background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.lx-chip:hover {
  transform: translateY(-2px);
  border-color: var(--lx-cyan);
  color: #007A99;
}

.lx-chip-solid {
  background: var(--lx-ink);
  color: #fff;
  border-color: var(--lx-ink);
}

.lx-chip-solid:hover {
  background: var(--lx-rose);
  border-color: var(--lx-rose);
  color: #fff;
}

/* Console + segmented tabs */
.lx-console {
  padding: 1.15rem 1.25rem 1.5rem;
  background: var(--lx-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--lx-radius-soft);
  box-shadow: 0 18px 44px rgba(18, 22, 31, 0.07);
}

.lx-seg {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  padding: 0.3rem;
  margin-bottom: 1.35rem;
  background: rgba(18, 22, 31, 0.06);
  border-radius: 1rem;
}

.lx-seg-auth {
  grid-template-columns: 1fr 1fr;
}

.lx-seg-glider {
  position: absolute;
  top: 0.3rem;
  bottom: 0.3rem;
  left: 0.3rem;
  width: calc((100% - 0.6rem - 0.5rem) / 3);
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 6px 18px rgba(18, 22, 31, 0.1);
  transition: transform 0.4s var(--lx-ease), width 0.4s var(--lx-ease);
  z-index: 0;
  pointer-events: none;
}

.lx-seg-auth .lx-seg-glider {
  width: calc((100% - 0.6rem - 0.25rem) / 2);
}

.lx-seg-btn {
  position: relative;
  z-index: 1;
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lx-mute);
  padding: 0.7rem 0.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: color 0.25s ease;
}

.lx-seg-btn.is-active,
.lx-seg-btn:hover {
  color: var(--lx-ink);
}

.lx-pane { animation: lx-pane-in 0.4s var(--lx-ease); }
.lx-pane[hidden] { display: none !important; }

@keyframes lx-pane-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.lx-pane-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.lx-pane-bar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.lx-pane-bar .lx-pane-title { margin: 0; }

.lx-textlink {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lx-cyan);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.lx-textlink:hover {
  color: var(--lx-rose);
  border-bottom-color: var(--lx-rose);
}

/* Profile lattice — styles for store-auth injected .profile-item */
.profile-grid,
.lx-lattice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .profile-grid,
  .lx-lattice { grid-template-columns: 1fr; }
}

.profile-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.95rem 1.05rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--lx-stroke);
  border-radius: 1.1rem 0.4rem 1.1rem 0.4rem;
  transition: transform 0.35s var(--lx-ease), border-color 0.25s ease, box-shadow 0.35s var(--lx-ease);
}

.profile-item:hover {
  transform: translateY(-3px) rotate(-0.3deg);
  border-color: rgba(0, 168, 197, 0.35);
  box-shadow: 0 12px 28px rgba(0, 168, 197, 0.1);
}

.profile-item .k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lx-mute);
}

.profile-item .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.profile-item .v.mono {
  font-family: ui-monospace, 'Cascadia Code', monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lx-mute);
}

/* Orders injected markup */
.order-list,
.lx-orders { display: flex; flex-direction: column; gap: 0.55rem; }

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--lx-stroke);
  border-radius: 1rem 0.45rem;
  transition: transform 0.3s var(--lx-ease), border-color 0.25s ease;
}

.order-row:hover {
  transform: translateX(4px);
  border-color: rgba(255, 92, 108, 0.35);
}

.order-row .mini-copy {
  color: var(--lx-mute);
  font-size: 0.86rem;
  margin-top: 0.2rem;
}

.mini-copy { color: var(--lx-mute); }

.order-row .btn,
.order-row .btn-soft {
  flex-shrink: 0;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: var(--lx-ink);
  color: #fff;
  transition: background 0.25s ease, transform 0.3s var(--lx-ease);
}

.order-row .btn:hover,
.order-row .btn-soft:hover {
  background: var(--lx-cyan);
  transform: scale(1.04);
}

/* Vault switch */
.lx-vault-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1rem;
  background: rgba(18, 22, 31, 0.05);
  border-radius: 1.15rem 0.5rem;
}

.lx-vault-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.lx-vault-bar span {
  font-size: 0.84rem;
  color: var(--lx-mute);
}

.lx-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--lx-mute);
}

.lx-switch i {
  position: relative;
  width: 3rem;
  height: 1.65rem;
  border-radius: 999px;
  background: rgba(18, 22, 31, 0.18);
  transition: background 0.3s ease;
}

.lx-switch i::after {
  content: '';
  position: absolute;
  top: 0.2rem;
  left: 0.2rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(18, 22, 31, 0.2);
  transition: transform 0.35s var(--lx-ease);
}

.lx-switch[aria-checked="true"] {
  color: var(--lx-ok);
}

.lx-switch[aria-checked="true"] i {
  background: linear-gradient(90deg, var(--lx-cyan), var(--lx-ok));
}

.lx-switch[aria-checked="true"] i::after {
  transform: translateX(1.3rem);
}

.lx-vault {
  display: grid;
  gap: 0.9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--lx-ease), opacity 0.35s ease, margin 0.35s ease;
}

.lx-vault:not([inert]) {
  max-height: 28rem;
  opacity: 1;
  margin-top: 0.25rem;
}

/* Forms */
.lx-form { display: grid; gap: 0.9rem; }

.lx-field label,
.ir-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lx-mute);
}

.lx-field input,
.ir-field input {
  width: 100%;
  min-height: 2.85rem;
  padding: 0.65rem 0.95rem;
  border: 1.5px solid var(--lx-stroke);
  border-radius: 0.85rem 0.35rem;
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  color: var(--lx-ink);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lx-field input:focus,
.ir-field input:focus {
  border-color: var(--lx-cyan);
  box-shadow: 0 0 0 4px rgba(0, 168, 197, 0.15);
  background: #fff;
}

.lx-input,
.ir-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.lx-input input,
.ir-input-wrap input {
  padding-right: 4.2rem;
}

.lx-eye,
.ir-eye {
  position: absolute;
  right: 0.4rem;
  appearance: none;
  border: 0;
  background: rgba(18, 22, 31, 0.06);
  color: var(--lx-mute);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lx-eye:hover,
.ir-eye:hover {
  background: var(--lx-cyan);
  color: #fff;
}

.lx-btn,
.ir-btn {
  appearance: none;
  border: 0;
  min-height: 2.9rem;
  padding: 0 1.35rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--lx-rose), #FF8A6B);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 92, 108, 0.28);
  transition: transform 0.35s var(--lx-ease), box-shadow 0.35s var(--lx-ease), filter 0.25s ease;
}

.lx-btn:hover,
.ir-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 16px 34px rgba(255, 92, 108, 0.36);
  filter: brightness(1.04);
}

.lx-btn-ghost,
.ir-btn-ghost {
  background: transparent;
  color: var(--lx-ink);
  border: 1.5px solid var(--lx-stroke);
  box-shadow: none;
}

.lx-btn-ghost:hover,
.ir-btn-ghost:hover {
  border-color: var(--lx-cyan);
  color: #007A99;
  box-shadow: none;
}

/* Gate (logged out) */
.lx-gate {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 880px) {
  .lx-gate {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    gap: 1.75rem;
  }
}

.lx-story {
  padding: 1.75rem 1.6rem;
  background: linear-gradient(155deg, var(--lx-void) 0%, #1E2A3D 55%, #163040 100%);
  color: #F4F8FC;
  border-radius: 2.5rem 0.7rem 2.5rem 0.7rem;
  box-shadow: 0 24px 50px rgba(18, 22, 31, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lx-story h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.lx-story-lede {
  margin: 0 0 1.35rem;
  color: rgba(232, 238, 247, 0.78);
  line-height: 1.55;
  max-width: 32ch;
}

.lx-pips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.lx-pips li {
  position: relative;
  padding: 0.65rem 0.85rem 0.65rem 1.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.85rem 0.35rem;
  font-size: 0.92rem;
  transition: background 0.25s ease, transform 0.3s var(--lx-ease);
}

.lx-pips li::before {
  content: '';
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.22rem;
  border-radius: 50%;
  background: var(--lx-cyan-soft);
  box-shadow: 0 0 0 3px rgba(125, 227, 240, 0.2);
}

.lx-pips li:hover {
  background: rgba(0, 168, 197, 0.15);
  transform: translateX(4px);
}

.lx-glass {
  padding: 1.35rem 1.35rem 1.55rem;
  background: var(--lx-glass-strong);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0.7rem 2.25rem 0.7rem 2.25rem;
  box-shadow:
    0 22px 50px rgba(18, 22, 31, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.lx-glass h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 750;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.auth-split-panel[hidden] { display: none !important; }

.lx-forgot {
  margin-top: 0.75rem;
  border-top: 1px dashed var(--lx-stroke);
  padding-top: 0.75rem;
}

.lx-forgot summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--lx-mute);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.lx-forgot summary:hover { color: var(--lx-cyan); }

.lx-forgot .lx-form { margin-top: 0.85rem; }

.lx-flash,
.ir-flash {
  margin: 0 0 0.85rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem 0.35rem;
  background: rgba(255, 92, 108, 0.12);
  color: var(--lx-rose-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.notice {
  margin-top: 0.55rem;
  padding: 0.55rem 0.75rem;
  border-radius: 0.75rem 0.3rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.notice.success {
  background: rgba(31, 138, 107, 0.12);
  color: var(--lx-ok);
}

.notice.warning {
  background: rgba(196, 92, 26, 0.12);
  color: var(--lx-warn);
}

/* Toast */
.toast,
.lx-toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 120%);
  z-index: 100;
  max-width: min(92vw, 26rem);
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  background: var(--lx-void);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 16px 40px rgba(18, 22, 31, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--lx-ease), opacity 0.35s ease;
}

.toast.visible,
.lx-toast.visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

[data-lx-rise] {
  opacity: 0;
  transform: translateY(16px);
  animation: lx-rise 0.7s var(--lx-ease) forwards;
}

[data-lx-rise]:nth-child(2) { animation-delay: 0.12s; }

@keyframes lx-rise {
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  [data-lx-rise] { opacity: 1; transform: none; animation: none; }
  .lx-pane { animation: none; }
  .lx-ring { animation: none; border-top-color: var(--lx-cyan); }
}

/* Footer for account */
.lx-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
  font-size: 0.82rem;
  color: var(--lx-mute);
  border-top: 1px solid var(--lx-stroke);
}

.lx-foot a {
  color: var(--lx-ink);
  font-weight: 650;
  text-decoration: none;
  margin-left: 0.75rem;
}

.lx-foot a:hover { color: var(--lx-rose); }
