:root {
  --bg: #f3f3f5;
  --panel: rgba(255,255,255,.62);
  --border: rgba(255,255,255,.72);
  --text: #1d1d1f;
  --muted: rgba(29,29,31,.48);
  --purple: #7c5cff;
  --purple2: #7f8cff;
  --shadow: 0 24px 60px rgba(31,34,46,.1);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); font-family: Inter, Arial, sans-serif; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255,255,255,.96), rgba(243,243,245,.95) 40%, rgba(239,239,242,1) 100%);
  z-index: -1;
}
button, input, textarea, select { font: inherit; }
.shell { min-height: 100vh; display: flex; }
.sidebar {
  width: 312px; min-width: 312px; border-right: 1px solid rgba(0,0,0,.05); background: rgba(237,237,240,.86);
  backdrop-filter: blur(20px); padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; font-size: 18px; }
.logo {
  width: 28px; height: 28px; border-radius: 999px;
  background: conic-gradient(from 180deg at 50% 50%, #7c5cff, #7f8cff, #7c5cff);
  box-shadow: 0 10px 30px rgba(124,92,255,.25);
}
.soft-card {
  border: 1px solid var(--border); background: var(--panel); backdrop-filter: blur(22px);
  border-radius: 26px; box-shadow: 0 16px 40px rgba(31,34,46,.05);
}
.main { flex: 1; display: flex; align-items: center; justify-content: center; padding: 36px; }
.hero { width: 100%; max-width: 960px; text-align: center; }
.hero h1 { font-size: 56px; margin: 0; font-weight: 500; letter-spacing: -.03em; }
.hero p { margin: 6px 0 0; font-size: 38px; color: var(--muted); letter-spacing: -.03em; }
.stage {
  margin: 48px auto 0; width: 100%; max-width: 760px; min-height: 460px; position: relative;
  border: 1px solid var(--border); background: rgba(255,255,255,.56); backdrop-filter: blur(28px);
  border-radius: 44px; box-shadow: 0 30px 80px rgba(31,34,46,.08); overflow: hidden;
}
.stage::before {
  content: ""; position: absolute; inset: 0; border-radius: 44px;
  background: radial-gradient(circle at top, rgba(255,255,255,.95), rgba(250,250,252,.72) 45%, rgba(241,241,244,.55) 100%);
}
.center-stack { position: relative; z-index: 1; min-height: 460px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.bars { height: 110px; display: flex; align-items: end; gap: 6px; margin-bottom: 26px; }
.bar { width: 8px; border-radius: 999px; background: linear-gradient(180deg, rgba(124,92,255,.92), rgba(124,92,255,.3)); box-shadow: 0 6px 18px rgba(124,92,255,.22); transition: height .14s ease-out; }
.glow { position: absolute; width: 250px; height: 250px; border-radius: 999px; background: radial-gradient(circle, rgba(124,92,255,.18), rgba(124,92,255,.04) 45%, rgba(124,92,255,0) 72%); filter: blur(2px); }
.mic-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.mic-btn {
  position: relative;
  z-index: 30;
  width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.82); border-radius: 999px; cursor: pointer;
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(243,243,248,.94)); box-shadow: 0 24px 60px rgba(35,37,45,.12), inset 0 1px 0 rgba(255,255,255,.8);
  display: grid; place-items: center;
}
.mic-core {
  width: 120px; height: 120px; border-radius: 999px; background: linear-gradient(180deg, #7f67ff, #7754ff); color: white;
  box-shadow: 0 20px 40px rgba(124,92,255,.38); display: grid; place-items: center; font-size: 44px; font-weight: 700;
}
.status-title { margin-top: 28px; font-size: 20px; font-weight: 600; }
.status-sub { margin-top: 6px; color: rgba(29,29,31,.42); font-size: 15px; }
.pill { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 10px 14px; color: rgba(29,29,31,.72); }
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: 1.2fr .8fr; }
.card { padding: 18px; }
.card h3 { margin: 0 0 10px; font-size: 16px; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }
textarea, input, select {
  width: 100%; border: 1px solid rgba(0,0,0,.06); background: rgba(255,255,255,.78); outline: none; color: var(--text);
  border-radius: 18px; padding: 14px 16px;
}
textarea { min-height: 220px; resize: vertical; }
.btn {
  border: 0; border-radius: 18px; padding: 12px 16px; cursor: pointer; background: linear-gradient(180deg, #7f67ff, #7754ff); color: white;
  box-shadow: 0 16px 32px rgba(124,92,255,.28);
}
.btn.secondary { background: rgba(255,255,255,.82); color: var(--text); box-shadow: none; border: 1px solid rgba(0,0,0,.06); }
.row { display: flex; gap: 12px; align-items: center; }
.space { height: 16px; }
.small { font-size: 13px; color: var(--muted); }
.metric { font-size: 28px; font-weight: 700; letter-spacing: -.03em; }
.metric-label { font-size: 13px; color: var(--muted); }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table td, .table th { padding: 10px 8px; border-bottom: 1px solid rgba(0,0,0,.05); text-align: left; }
.hidden { display: none !important; }
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.login-box { width: min(420px, 100%); padding: 24px; }
.badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(124,92,255,.12); color: #6f55ff; font-size: 13px; }
@media (max-width: 980px) {
  .sidebar { display: none; }
  .main { padding: 18px; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 28px; }
  .grid.two { grid-template-columns: 1fr; }
}

.glow { pointer-events: none !important; }

.visualizer, .visualizer * { pointer-events: none !important; }
