/* ============================================================
   Landing Page Creator — Neural Command Center
   Chakra Petch · Plus Jakarta Sans · JetBrains Mono
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Plus+Jakarta+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;500;600&display=swap");

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --lpc-font-display : "Chakra Petch", system-ui, sans-serif;
  --lpc-font-body    : "Plus Jakarta Sans", system-ui, sans-serif;
  --lpc-font-mono    : "JetBrains Mono", "Cascadia Code", ui-monospace, monospace;

  --lpc-bg-deep      : #020817;
  --lpc-bg-surface   : #080d1c;
  --lpc-bg-elevated  : rgba(8, 13, 30, 0.78);

  --lpc-border       : rgba(100, 130, 180, 0.13);
  --lpc-border-strong: rgba(0, 220, 205, 0.35);

  --lpc-text         : #dce8ff;
  --lpc-text-muted   : #7887a8;

  --lpc-accent       : #00dcc8;
  --lpc-accent-dim   : rgba(0, 220, 200, 0.1);
  --lpc-violet       : #a78bfa;
  --lpc-violet-dim   : rgba(167, 139, 250, 0.1);
  --lpc-gold         : #f5a623;
  --lpc-green        : #22d994;

  --lpc-glow         : rgba(0, 220, 200, 0.55);
  --lpc-glow-v       : rgba(167, 139, 250, 0.45);
  --lpc-glow-gold    : rgba(245, 166, 35, 0.4);

  --lpc-radius       : 16px;
  --lpc-radius-sm    : 10px;
  --lpc-radius-xs    : 6px;

  --lpc-shadow-lg    : 0 32px 80px -20px rgba(0, 0, 0, 0.7);
  --lpc-shadow-card  : 0 2px 20px rgba(0, 0, 0, 0.45),
                       inset 0 1px 0 rgba(255, 255, 255, 0.04);
  --lpc-blur         : 22px;
}

[data-bs-theme="dark"] {
  --bs-body-bg          : var(--lpc-bg-deep);
  --bs-body-color       : var(--lpc-text);
  --bs-primary          : #00dcc8;
  --bs-primary-rgb      : 0, 220, 200;
  --bs-link-color       : #4eeee0;
  --bs-link-hover-color : #99f8f4;
  --bs-border-color     : var(--lpc-border);
  --bs-secondary-color  : var(--lpc-text-muted);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.lpc-body {
  font-family: var(--lpc-font-body);
  font-size: 15px;
  font-weight: 400;
  background-color: var(--lpc-bg-deep);
  color: var(--lpc-text);
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Background system ────────────────────────────────────── */

/* Layer 1 — animated gradient orbs */
body.lpc-body::before {
  content: "";
  position: fixed;
  inset: -30%;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 55% at 10%  8%,  rgba(167, 139, 250, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 15%,  rgba(0,  220, 200, 0.18)  0%, transparent 50%),
    radial-gradient(ellipse 50% 55% at 50% 92%,  rgba(59, 130, 246, 0.14)  0%, transparent 48%),
    radial-gradient(ellipse 38% 32% at 22% 68%,  rgba(0,  220, 200, 0.09)  0%, transparent 45%),
    var(--lpc-bg-deep);
  animation: lpc-mesh-drift 34s ease-in-out infinite alternate;
}

/* Layer 2 — pixel grid */
body.lpc-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(100, 130, 200, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100, 130, 200, 0.055) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 88% 72% at 50% 30%, black 10%, transparent 70%);
  pointer-events: none;
}

/* ── Keyframes ────────────────────────────────────────────── */
@keyframes lpc-mesh-drift {
  0%   { transform: translate(0,   0)   scale(1);    }
  100% { transform: translate(3%, -4%)  scale(1.05); }
}

@keyframes lpc-fade-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes lpc-shimmer {
  0%   { background-position:  220% center; }
  100% { background-position: -220% center; }
}

@keyframes lpc-pulse-ring {
  0%, 100% { box-shadow: 0 0 0  0   rgba(0, 220, 200, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(0, 220, 200, 0);   }
}

@keyframes lpc-pulse-dot {
  0%, 100% { opacity: 1;    transform: scale(1);    }
  50%       { opacity: 0.55; transform: scale(0.8);  }
}

@keyframes lpc-scan-beam {
  0%   { top: -2px;   opacity: 0;   }
  4%   {              opacity: 0.9; }
  94%  {              opacity: 0.5; }
  100% { top: 100vh;  opacity: 0;   }
}

@keyframes lpc-float {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-7px); }
}

@keyframes lpc-ticker {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

@keyframes lpc-counter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0);   }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.lpc-body::before { animation: none; }
  .lpc-main::before { display: none; }
  .lpc-animate-in, .lpc-stagger > * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Scan beam ────────────────────────────────────────────── */
.lpc-main {
  position: relative;
  animation: lpc-fade-rise 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lpc-main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent              0%,
    rgba(167, 139, 250, 0.6) 20%,
    rgba(0, 220, 200, 1)     50%,
    rgba(167, 139, 250, 0.6) 80%,
    transparent              100%
  );
  opacity: 0;
  z-index: 9;
  pointer-events: none;
  animation: lpc-scan-beam 10s ease-in-out 1.5s infinite;
}

/* ── Header ───────────────────────────────────────────────── */
.lpc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 0 !important;
  padding-block: 0.85rem 0.95rem !important;
  background: rgba(2, 8, 23, 0.85);
  backdrop-filter: blur(var(--lpc-blur)) saturate(1.5);
  -webkit-backdrop-filter: blur(var(--lpc-blur)) saturate(1.5);
  border-bottom: 1px solid var(--lpc-border) !important;
  box-shadow:
    0 1px 0 rgba(0, 220, 200, 0.06),
    0 4px 32px -8px rgba(0, 0, 0, 0.5);
}

.lpc-header .container { max-width: 1200px; }

.lpc-brand {
  font-family: var(--lpc-font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lpc-text) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  transition: color 0.2s, filter 0.2s;
}

.lpc-brand-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lpc-accent) 0%, var(--lpc-violet) 100%);
  box-shadow: 0 0 18px var(--lpc-glow), 0 0 40px rgba(167, 139, 250, 0.2);
  animation: lpc-pulse-ring 3.5s ease-in-out infinite;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: rgba(2, 8, 23, 0.9);
}

.lpc-brand:hover { color: #fff !important; filter: brightness(1.1); }

.lpc-nav { gap: 0.15rem 0.5rem !important; }

.lpc-nav a:not(.lpc-btn-pill) {
  color: var(--lpc-text-muted);
  text-decoration: none;
  font-family: var(--lpc-font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.lpc-nav a:not(.lpc-btn-pill):hover {
  color: var(--lpc-text);
  background: rgba(100, 130, 180, 0.09);
}

.lpc-nav .lpc-btn-pill {
  background: linear-gradient(135deg,
    rgba(0, 220, 200, 0.18),
    rgba(167, 139, 250, 0.14));
  border: 1px solid var(--lpc-border-strong);
  color: #a5f3ef !important;
  font-family: var(--lpc-font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem !important;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.25s, border-color 0.2s, color 0.2s;
}

.lpc-nav .lpc-btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px -8px var(--lpc-glow);
  border-color: rgba(0, 220, 200, 0.6);
  color: #fff !important;
}

.lpc-nav .text-muted.small {
  color: var(--lpc-text-muted) !important;
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  background: rgba(100, 130, 180, 0.07);
  font-family: var(--lpc-font-mono);
  font-size: 0.76rem !important;
  letter-spacing: 0.04em;
}

/* ── Stagger animations ───────────────────────────────────── */
.lpc-stagger > *:nth-child(1)   { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.04s both; }
.lpc-stagger > *:nth-child(2)   { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.12s both; }
.lpc-stagger > *:nth-child(3)   { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.20s both; }
.lpc-stagger > *:nth-child(4)   { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.28s both; }
.lpc-stagger > *:nth-child(5)   { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.36s both; }
.lpc-stagger > *:nth-child(n+6) { animation: lpc-fade-rise 0.6s cubic-bezier(0.22,1,0.36,1) 0.44s both; }

/* ── Footer ───────────────────────────────────────────────── */
.lpc-footer {
  border-top: 1px solid var(--lpc-border) !important;
  background: rgba(2, 8, 23, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--lpc-font-mono);
  font-size: 0.72rem !important;
  letter-spacing: 0.04em;
}

.lpc-footer .container { max-width: 1200px; }

/* ── HTMX ─────────────────────────────────────────────────── */
.htmx-indicator {
  visibility: hidden;
  margin-right: 0.5rem;
  vertical-align: middle;
  border-color: rgba(0, 220, 200, 0.2) !important;
  border-right-color: var(--lpc-accent) !important;
}

.htmx-request .htmx-indicator,
.htmx-request.htmx-indicator { visibility: visible; }

/* ── Glass cards ──────────────────────────────────────────── */
.lpc-glass {
  background: var(--lpc-bg-elevated);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-radius);
  box-shadow: var(--lpc-shadow-card);
  backdrop-filter: blur(var(--lpc-blur));
  -webkit-backdrop-filter: blur(var(--lpc-blur));
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

/* Top-edge glow line on hover */
.lpc-glass::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 220, 200, 0.55) 50%,
    transparent
  );
  border-radius: var(--lpc-radius) var(--lpc-radius) 0 0;
  opacity: 0;
  transition: opacity 0.35s, left 0.35s, right 0.35s;
}

.lpc-glass:hover {
  border-color: rgba(0, 220, 200, 0.22);
  box-shadow:
    var(--lpc-shadow-card),
    0 0 40px -12px rgba(0, 220, 200, 0.15);
}

.lpc-glass:hover::after {
  opacity: 1;
  left: 5%;
  right: 5%;
}

.lpc-glass--tight { border-radius: var(--lpc-radius-sm); }

/* ── Typography ───────────────────────────────────────────── */
.lpc-eyebrow {
  font-family: var(--lpc-font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lpc-accent);
}

.lpc-display {
  font-family: var(--lpc-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.lpc-gradient-text {
  background: linear-gradient(105deg, #eaf1ff 12%, #4aede2 40%, #c084fc 82%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lpc-shimmer 12s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .lpc-gradient-text {
    animation: none;
    background: linear-gradient(105deg, #eaf1ff, #4aede2);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

/* ── Badges ───────────────────────────────────────────────── */
.lpc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--lpc-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--lpc-accent-dim);
  border: 1px solid rgba(0, 220, 200, 0.22);
  color: #80f8ef;
}

.lpc-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lpc-accent);
  box-shadow: 0 0 8px var(--lpc-glow);
  animation: lpc-pulse-dot 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

.lpc-badge--live {
  background: rgba(34, 217, 148, 0.1);
  border-color: rgba(34, 217, 148, 0.25);
  color: #7dffd1;
}

.lpc-badge--live::before {
  background: var(--lpc-green);
  box-shadow: 0 0 8px rgba(34, 217, 148, 0.7);
}

.lpc-badge--violet {
  background: var(--lpc-violet-dim);
  border-color: rgba(167, 139, 250, 0.25);
  color: #c4b5fd;
}

.lpc-badge--violet::before {
  background: var(--lpc-violet);
  box-shadow: 0 0 8px var(--lpc-glow-v);
}

/* ── Metric cards ─────────────────────────────────────────── */
.lpc-metric-card {
  background: rgba(8, 13, 30, 0.72);
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-radius-sm);
  padding: 1rem 1.25rem 0.9rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.lpc-metric-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lpc-accent), var(--lpc-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.lpc-metric-card:hover {
  border-color: rgba(0, 220, 200, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px -12px rgba(0, 220, 200, 0.2);
}

.lpc-metric-card:hover::before { transform: scaleX(1); }

.lpc-metric-value {
  font-family: var(--lpc-font-display);
  font-size: 1.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--lpc-accent);
  line-height: 1;
  animation: lpc-counter 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.lpc-metric-label {
  font-family: var(--lpc-font-mono);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lpc-text-muted);
  margin-top: 0.35rem;
}

/* ── Tech ticker ──────────────────────────────────────────── */
.lpc-ticker-wrap {
  overflow: hidden;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(0, 220, 200, 0.08);
  border-bottom: 1px solid rgba(0, 220, 200, 0.08);
  background: rgba(0, 220, 200, 0.025);
  margin-bottom: 2.5rem;
}

.lpc-ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: lpc-ticker 28s linear infinite;
  font-family: var(--lpc-font-mono);
  font-size: 0.7rem;
  color: var(--lpc-text-muted);
  letter-spacing: 0.05em;
}

.lpc-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.lpc-ticker-item .t-up     { color: var(--lpc-green);  }
.lpc-ticker-item .t-accent { color: var(--lpc-accent);  }
.lpc-ticker-item .t-violet { color: var(--lpc-violet);  }
.lpc-ticker-item .t-gold   { color: var(--lpc-gold);    }

/* ── Forms ────────────────────────────────────────────────── */
[data-bs-theme="dark"] .form-control,
[data-bs-theme="dark"] .form-select {
  background-color: rgba(2, 8, 23, 0.8);
  border-color: var(--lpc-border);
  color: var(--lpc-text);
  border-radius: var(--lpc-radius-sm);
  font-family: var(--lpc-font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

[data-bs-theme="dark"] .form-control:focus,
[data-bs-theme="dark"] .form-select:focus {
  border-color: rgba(0, 220, 200, 0.5);
  box-shadow: 0 0 0 3px rgba(0, 220, 200, 0.12);
  background-color: rgba(2, 8, 23, 0.92);
  outline: none;
}

[data-bs-theme="dark"] .form-label {
  font-family: var(--lpc-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lpc-text-muted);
  margin-bottom: 0.4rem;
}

/* ── Buttons ──────────────────────────────────────────────── */
[data-bs-theme="dark"] .btn-primary {
  font-family: var(--lpc-font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: none;
  border-radius: var(--lpc-radius-sm);
  padding: 0.6rem 1.5rem;
  background: linear-gradient(135deg, #00c4b4 0%, #009d90 100%);
  box-shadow:
    0 4px 20px -4px rgba(0, 220, 200, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}

[data-bs-theme="dark"] .btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, transparent 55%);
  pointer-events: none;
}

[data-bs-theme="dark"] .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow:
    0 8px 30px -6px rgba(0, 220, 200, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

[data-bs-theme="dark"] .btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

[data-bs-theme="dark"] .btn-outline-primary {
  border-radius: var(--lpc-radius-sm);
  border-color: rgba(0, 220, 200, 0.4);
  color: #44ede2;
  font-family: var(--lpc-font-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

[data-bs-theme="dark"] .btn-outline-primary:hover {
  background: var(--lpc-accent-dim);
  border-color: var(--lpc-accent);
  color: #e0fffd;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px -6px rgba(0, 220, 200, 0.3);
}

[data-bs-theme="dark"] .btn-check:checked + .btn-outline-primary {
  background: linear-gradient(135deg,
    rgba(0, 220, 200, 0.22),
    rgba(167, 139, 250, 0.18));
  border-color: var(--lpc-accent);
  color: #e0fffd;
}

[data-bs-theme="dark"] .btn-sm {
  font-size: 0.72rem;
  padding: 0.4rem 1rem;
}

/* ── Studio layout ────────────────────────────────────────── */
.studio-root .lpc-studio-chat,
.studio-root .lpc-studio-panel { min-height: 0; }

.studio-root .lpc-studio-chat { border-radius: var(--lpc-radius); }

.studio-root #studio-chat-log {
  background: rgba(2, 8, 23, 0.65) !important;
  border: 1px solid var(--lpc-border) !important;
  border-radius: var(--lpc-radius-sm);
  font-family: var(--lpc-font-mono);
  font-size: 0.78rem;
  line-height: 1.7;
}

.studio-root .studio-file-list .btn-link {
  color: #a0b0cc !important;
  font-family: var(--lpc-font-mono);
  font-size: 0.78rem;
}

.studio-root .studio-file-list .btn-link:hover { color: var(--lpc-accent) !important; }

.studio-root #studio-panel-preview {
  border-radius: var(--lpc-radius);
  border: 1px solid var(--lpc-border);
  box-shadow: inset 0 0 0 1px rgba(0, 220, 200, 0.04);
}

.studio-root #studio-panel-code {
  border-radius: var(--lpc-radius);
  border: 1px solid var(--lpc-border);
}

.studio-root #studio-panel-code .border-end {
  background: rgba(2, 8, 23, 0.75) !important;
}

.studio-root #studio-editor {
  background: rgba(2, 8, 23, 0.92) !important;
  color: var(--lpc-text);
  font-family: var(--lpc-font-mono);
  font-size: 0.8rem;
  line-height: 1.65;
}

.studio-root #studio-terminal-log {
  border: 1px solid var(--lpc-border);
  border-radius: var(--lpc-radius-sm);
  font-family: var(--lpc-font-mono);
  font-size: 0.72rem;
  line-height: 1.6;
}

#studio-wc-status.lpc-status-live {
  color: var(--lpc-green) !important;
  font-weight: 600;
  font-family: var(--lpc-font-mono);
  font-size: 0.76rem;
}

/* ── Project list ─────────────────────────────────────────── */
.lpc-project-row {
  border-radius: var(--lpc-radius-sm) !important;
  transition: transform 0.22s, border-color 0.22s, background 0.22s, box-shadow 0.22s;
}

.lpc-project-row:hover {
  transform: translateX(6px);
  border-color: rgba(0, 220, 200, 0.25) !important;
  background: rgba(0, 220, 200, 0.045) !important;
  box-shadow:
    -4px 0 0 rgba(0, 220, 200, 0.45),
    0 4px 20px -8px rgba(0, 220, 200, 0.15);
}

/* ── Auth ─────────────────────────────────────────────────── */
.lpc-auth-card { max-width: 440px; margin-inline: auto; }

/* ── Status dot ───────────────────────────────────────────── */
.lpc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lpc-green);
  box-shadow: 0 0 10px rgba(34, 217, 148, 0.7);
  animation: lpc-pulse-dot 2s ease-in-out infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* ── Code / inline ────────────────────────────────────────── */
code.text-info {
  font-family: var(--lpc-font-mono);
  font-size: 0.82em;
  color: var(--lpc-accent) !important;
  background: var(--lpc-accent-dim);
  padding: 0.15em 0.5em;
  border-radius: 4px;
  border: 1px solid rgba(0, 220, 200, 0.15);
}

/* ── Divider ──────────────────────────────────────────────── */
.lpc-divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--lpc-border) 30%,
    var(--lpc-border) 70%,
    transparent
  );
  margin-block: 1.5rem;
}

/* ── Float utility ────────────────────────────────────────── */
.lpc-float { animation: lpc-float 6s ease-in-out infinite; }

/* ── HTMX partial highlight ───────────────────────────────── */
.htmx-settled.border-success,
.border-success.htmx-settled {
  border-color: rgba(0, 220, 200, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(0, 220, 200, 0.1);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
