:root {
  --bg: #070708;
  --card: #121214;
  --card-2: #18181b;
  --line: #232326;
  --lime: #38FF61;
  --lime-dim: rgba(56, 255, 97, 0.14);
  --violet: #9E2EFF;
  --orange: #FF6B14;
  --red: #ff4d57;
  --cyan: #3ee0e6;
  --amber: #f5c542;
  --cream: #F6F1E6;
  --text: #F6F1E6;
  --muted: #c2c2c8;
  --faint: #9a9aa3;
  --font: "Outfit", system-ui, -apple-system, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bot: env(safe-area-inset-bottom, 0px);
  --dock: calc(78px + var(--safe-bot));
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; background: var(--bg); }
body { font-family: var(--font); color: var(--text); overflow-x: hidden; }
button, input, select, textarea { font-family: inherit; color: inherit; font-size: 16px; }
button { border: 0; background: none; cursor: pointer; }
a { color: var(--lime); text-decoration: none; }
.app { min-height: 100dvh; }
.top {
  padding: calc(10px + var(--safe-top)) 18px 8px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 20;
  background: linear-gradient(180deg, #070708 70%, transparent);
}
.icon-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #2a2a2e; color: var(--lime);
  display: grid; place-items: center;
}
.icon-btn svg { width: 18px; height: 18px; }
.hello h1 { font-size: 28px; letter-spacing: -.03em; font-weight: 600; }
.hello p { color: var(--muted); font-size: 14px; margin-top: 2px; }
.wrap { width: min(430px, 100%); margin: 0 auto; padding: 6px 16px var(--dock); }
.sec { display: flex; align-items: baseline; justify-content: space-between; margin: 18px 2px 10px; }
.sec h2 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.sec button { font-size: 11px; letter-spacing: .08em; color: var(--faint); text-transform: uppercase; }
.session {
  display: grid; grid-template-columns: 72px 1fr; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 12px; margin-bottom: 10px;
}
.cover { width: 72px; height: 72px; border-radius: 14px; display: grid; place-items: center; overflow: hidden; }
.session h3 { font-size: 17px; font-weight: 600; }
.session .when { color: var(--muted); font-size: 12px; margin: 2px 0 8px; }
.session-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.dots { color: var(--faint); font-size: 18px; line-height: 1; }
.mini-wave { height: 22px; width: 100%; }
.tag { font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 5px 8px; border-radius: 999px; white-space: nowrap; display: inline-flex; align-items: center; gap: 4px; }
.tag.st-create { background: #3a3a42; color: #f0f0f3; }
.tag.st-inbox { background: var(--orange); color: #1a0c00; }
.tag.st-prep { background: var(--amber); color: #1a1400; }
.tag.st-mix { background: var(--lime); color: #111; }
.tag.st-rev { background: var(--cyan); color: #042022; }
.tag.st-master { background: var(--red); color: #fff; }
.tag.st-done { background: #2a2a30; color: #ddd; }
.tag-edit { position: relative; padding-right: 6px; }
.tag-edit select {
  appearance: none; background: transparent; border: 0; color: inherit;
  font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 0 2px 0 0; max-width: 108px; min-height: 0;
}
.tag-plus { font-size: 13px; font-weight: 700; line-height: 1; }
.quick { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.q { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 14px 8px 12px; text-align: center; min-height: 92px; }
.q svg { width: 22px; height: 22px; color: var(--lime); margin-bottom: 8px; }
.q span { display: block; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: #cfcfd4; font-weight: 500; }
.act { display: flex; align-items: center; gap: 12px; padding: 12px 4px; }
.act .txt { flex: 1; }
.act b { display: block; font-size: 15px; font-weight: 560; }
.act small { color: var(--muted); font-size: 12px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot.g { background: var(--lime); }
.dot.o { background: var(--orange); }
.dot.s { background: #4a4a50; }
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  height: var(--dock); padding: 8px 8px var(--safe-bot);
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: end; background: rgba(8,8,9,.96);
  border-top: 1px solid #222;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
.dock button { color: var(--faint); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 4px 0 2px; position: relative; }
.dock button.on { color: var(--lime); }
.dock svg { width: 20px; height: 20px; }
.dock-plus { color: var(--text) !important; }
.plus-orb {
  width: 36px; height: 36px; border-radius: 12px;
  background: var(--lime); color: #111;
  display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(56,255,97,.28);
}
.plus-orb svg { width: 18px; height: 18px; }
.badge-n { position: absolute; top: 2px; right: 18%; min-width: 16px; height: 16px; border-radius: 99px; background: var(--lime); color: #111; font-size: 10px; font-weight: 700; display: grid; place-items: center; padding: 0 4px; }
.badge-n.topn { right: -2px; top: -2px; }
.status-chip {
  max-width: 132px; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .04em; background: var(--lime); color: #111;
  border: 0; border-radius: 999px; padding: 5px 8px; min-height: 0;
}
.toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--text); font-size: 15px; margin: 0; }
.toggle input { width: 46px; height: 28px; accent-color: var(--lime); }
.avatars { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.av { width: 44px; height: 44px; border-radius: 12px; background: #0d0d0f; border: 1px solid var(--line); font-size: 22px; }
.av.on { border-color: var(--lime); box-shadow: 0 0 0 2px var(--lime); }
.fresh { border-color: #2e3a10; background: #101109; }
.icon-btn { position: relative; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 16px; margin-bottom: 12px; }
.card h3 { font-size: 16px; margin-bottom: 8px; }
label { display: block; font-size: 12px; color: var(--muted); margin: 12px 0 6px; }
input, select, textarea { width: 100%; background: #0d0d0f; border: 1px solid var(--line); border-radius: 14px; padding: 13px 14px; outline: none; appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--lime); }
textarea { min-height: 90px; resize: vertical; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hint { color: var(--faint); font-size: 12px; margin-top: 10px; line-height: 1.45; }
.error { color: #ff6b6b; font-size: 13px; margin-top: 8px; }
.tabs { display: flex; gap: 16px; margin-bottom: 8px; }
.tab { color: var(--muted); padding: 8px 0; border-bottom: 2px solid transparent; }
.tab.on { color: var(--lime); border-color: var(--lime); }
.btn { display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); background: var(--card-2); color: var(--text); border-radius: 999px; padding: 12px 16px; min-height: 44px; font-size: 15px; }
.btn.primary { background: var(--lime); color: #111; border-color: transparent; font-weight: 600; }
.btn.ghost { background: transparent; }
.btn.danger { color: #ff6b6b; }
.btn.block { width: 100%; }
.btn.sm { min-height: 34px; padding: 7px 11px; font-size: 13px; }
.drop { border: 1px dashed #2e2e22; background: #101109; border-radius: 18px; padding: 22px 14px; text-align: center; margin-bottom: 12px; }
.drop h4 { margin-bottom: 6px; }
.drop p { color: var(--muted); font-size: 13px; }
.file-input { display: none; }
.folder-label { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--lime); margin: 14px 0 8px; }
.file { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px; margin-bottom: 8px; }
.file .name { font-size: 14px; word-break: break-all; }
.file .orig, .file .tech { color: var(--faint); font-size: 11px; font-family: var(--mono); margin-top: 3px; }
.warns { color: var(--orange); font-size: 12px; margin-top: 6px; }
.file .actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.chat-item { display: grid; grid-template-columns: 48px 1fr auto; gap: 10px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px; margin-bottom: 8px; }
.chat-item h3 { font-size: 15px; }
.chat-item p { color: var(--muted); font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-item time { color: var(--faint); font-size: 11px; }
.msg { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px; margin-bottom: 8px; }
.msg.mine { background: #161c0a; border-color: #2a3310; }
.msg .by { font-size: 12px; color: var(--lime); display: flex; justify-content: space-between; }
.msg .by span { color: var(--faint); }
.msg p { margin-top: 6px; font-size: 15px; line-height: 1.45; }
.composer { display: flex; gap: 8px; margin-top: 10px; position: sticky; bottom: calc(var(--dock) + 8px); background: var(--bg); padding: 8px 0; }
.composer input { flex: 1; }
.player { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px; margin-bottom: 12px; }
.player b { display: block; font-size: 13px; margin-bottom: 8px; }
audio { width: 100%; height: 36px; }
.members { display: flex; flex-wrap: wrap; gap: 8px; }
.member { background: #0d0d0f; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: 13px; }
.codebox { margin-top: 10px; background: #0d0d0f; border: 1px dashed #2e2e22; border-radius: 12px; padding: 12px; font-family: var(--mono); letter-spacing: .12em; display: flex; justify-content: space-between; align-items: center; }
.crumb { color: var(--muted); font-size: 14px; margin: 4px 0 10px; }
.kpis { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 12px; }
.kpi { font-family: var(--mono); font-size: 11px; color: var(--muted); border: 1px solid var(--line); padding: 5px 8px; border-radius: 8px; }
.sheet { position: fixed; inset: 0; z-index: 50; background: rgba(0,0,0,.55); display: flex; align-items: flex-end; }
.panel { width: 100%; background: #121214; border-radius: 22px 22px 0 0; padding: 12px 16px calc(20px + var(--safe-bot)); border-top: 1px solid var(--line); }
.handle { width: 42px; height: 4px; border-radius: 4px; background: #333; margin: 4px auto 14px; }
.install { border: 1px solid #2e2e22; background: #101109; border-radius: 16px; padding: 14px; margin-bottom: 12px; }
.install ol { padding-left: 18px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.pill { font-size: 12px; color: var(--muted); border: 1px solid var(--line); padding: 7px 10px; border-radius: 999px; }
.hero h2 { font-size: 32px; letter-spacing: -.03em; line-height: 1.08; margin: 8px 0 10px; }
.hero h2 em { font-style: normal; color: var(--lime); }
.hero p { color: var(--muted); }
.guide { padding-left: 18px; color: var(--muted); }
.guide li { margin: 8px 0; }
.guide b { color: var(--text); }
.status-select { width: 100%; margin: 8px 0 12px; }

 .mini {
  position: fixed; left: 10px; right: 10px; bottom: calc(var(--dock) + 8px);
  z-index: 28;
  display: grid; grid-template-columns: 40px 1fr auto auto;
  gap: 10px; align-items: center;
  background: #141416;
  border: 1px solid #2a2a22;
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.mini-play {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--lime); color: #111; font-size: 13px; font-weight: 700;
}
.mini-meta b { display: block; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 6px; }
.bar { height: 5px; background: #2a2a30; border-radius: 99px; overflow: hidden; }
.bar i { display: block; height: 100%; width: 0; background: var(--lime); }
.mini-t { font-family: var(--mono); font-size: 10px; color: var(--muted); white-space: nowrap; }
.mini audio { display: none; }
.wrap { padding-bottom: calc(var(--dock) + 72px); }

.cta {
  width: 100%;
  margin: 14px 0 6px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--lime);
  color: #111;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  box-shadow: 0 8px 24px rgba(56,255,97,.22);
}
.pressed { transform: scale(.97); filter: brightness(1.15); transition: transform .08s ease, filter .08s ease; }
button, .session, .chat-item, .q, .cta, a { transition: transform .12s ease, filter .12s ease, border-color .12s ease; }
.dock-plus, .plus-orb { display: none; }

.chips { display: flex; gap: 8px; overflow-x: auto; padding: 2px 0 10px; -webkit-overflow-scrolling: touch; }
.chips button {
  flex: 0 0 auto; border: 1px solid var(--line); background: #141416;
  color: var(--muted); border-radius: 999px; padding: 8px 12px; font-size: 13px;
}
.chips button.on { background: var(--lime); color: #111; border-color: transparent; font-weight: 700; }
.artist-block { margin-bottom: 16px; }
.artist-head { display: flex; align-items: baseline; justify-content: space-between; margin: 6px 2px 8px; }
.artist-head h3 { font-size: 18px; letter-spacing: -.02em; }
.artist-head span { font-size: 12px; color: var(--faint); }
.code-box { font-family: var(--mono); font-size: 28px; letter-spacing: .16em; text-align: center; padding: 16px; background: #101109; border: 1px solid var(--line); border-radius: 16px; margin: 10px 0; color: var(--lime); }
.tabs.slim { gap: 10px; overflow-x: auto; }
.file-mix { border-color: #2e3a10; }
.note-box { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line); }
.note { font-size: 14px; padding: 8px 0; }
.note b { color: var(--lime); margin-right: 6px; }
.note small, .note.big small { display: block; color: var(--faint); margin-top: 4px; }
.note.big { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 12px; margin-bottom: 8px; }
.note.big p { margin-top: 6px; }
.composer.tight { margin-top: 8px; }

@keyframes rise {
  from { opacity: 0; transform: translate3d(0,6px,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.fade-in, .session, .cta { animation: rise .18s ease-out both; }
.dock button, .btn, .tag { transition: color .15s ease, background-color .15s ease; }
.sheet .panel { animation: rise .16s ease-out; }
.cta.slim { margin: 0; padding: 13px 12px; font-size: 14px; }
.cta.slim.ghost { background: transparent; color: var(--lime); border: 1px solid var(--lime); box-shadow: none; }
.deliver { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 8px 0 10px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

.bg-glow {
  position: fixed; inset: -20% -10% auto -10%; height: 55vh; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(56,255,97,.18), transparent 55%),
    radial-gradient(ellipse at 15% 30%, rgba(180,75,255,.14), transparent 45%),
    radial-gradient(ellipse at 85% 20%, rgba(255,138,61,.1), transparent 40%);
  animation: glowshift 8s ease-in-out infinite alternate;
  transform: translateZ(0);
}
@keyframes glowshift {
  from { opacity: .7; transform: translate3d(0,0,0) scale(1); }
  to { opacity: 1; transform: translate3d(0,8px,0) scale(1.04); }
}
.welcome { position: relative; z-index: 1; }
.logo-mark { width: 64px; height: 64px; margin: 8px auto 10px; }
.logo-mark svg { width: 64px; height: 64px; filter: drop-shadow(0 0 16px rgba(56,255,97,.35)); }
.brand { display: flex; align-items: center; gap: 10px; color: var(--cream); font-weight: 700; letter-spacing: .02em; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.brand .ready { color: var(--lime); font-weight: 600; }
.brand svg { width: 28px; height: 28px; }
.brand.mini { font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--lime); margin-bottom: 6px; }
.brand.mini svg { width: 18px; height: 18px; }
.live-wave {
  display: flex; align-items: flex-end; justify-content: center; gap: 3px;
  height: 56px; margin: 8px 0 16px; transform: translateZ(0);
}
.live-wave i {
  width: 4px; border-radius: 99px;
  background: linear-gradient(180deg, #9CFFB0, var(--lime) 55%, #7aaa00);
  animation: bounce 1.1s ease-in-out infinite alternate;
  display: block; min-height: 18%;
}
@keyframes bounce {
  from { transform: scaleY(.45); opacity: .65; }
  to { transform: scaleY(1); opacity: 1; }
}
.pane-in { animation: pane .22s ease-out; }
@keyframes pane {
  from { opacity: .55; transform: translate3d(16px,0,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.btn.primary, .cta {
  background: linear-gradient(180deg, #7CFF9A 0%, var(--lime) 55%, #9ed400);
  box-shadow: 0 8px 22px rgba(56,255,97,.28), inset 0 1px 0 rgba(255,255,255,.45);
}
.tag.st-mix, .chips button.on, .plus-orb, .mini-play {
  background: linear-gradient(180deg, #7CFF9A, var(--lime));
}
.card, .session {
  background: linear-gradient(180deg, #1a1a1e 0%, var(--card) 40%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.dock { background: linear-gradient(180deg, rgba(18,18,20,.7), rgba(8,8,9,.96)); }
.hero em {
  background: linear-gradient(90deg, #7CFF9A, var(--lime));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
@media (prefers-reduced-motion: reduce) {
  .live-wave i, .bg-glow { animation: none !important; }
}

.live-wave { gap: 2px; height: 72px; }
.live-wave i {
  width: 3px;
  background: linear-gradient(180deg, #ff8a3d 0%, #38FF61 48%, #b44bff 100%);
  box-shadow: 0 0 8px rgba(56,255,97,.18);
  transform-origin: bottom center;
}
.hello h1 { font-weight: 500; letter-spacing: -.04em; }
.card, .session, .chat-item {
  border-color: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}
.btn.primary, .cta {
  letter-spacing: .01em;
}
.top { background: linear-gradient(180deg, rgba(7,7,8,.92), transparent); }

.session, .card, .chat-item, .file, .q, .mini, .install {
  box-shadow: 0 10px 28px rgba(0,0,0,.35), 0 0 0 1px rgba(56,255,97,.04), 0 0 24px rgba(180,75,255,.05);
}
.icon-btn {
  box-shadow: 0 4px 14px rgba(0,0,0,.35), 0 0 12px rgba(56,255,97,.08);
}
.btn.primary, .cta, .mini-play, .chips button.on {
  box-shadow: 0 8px 24px rgba(56,255,97,.22), 0 0 18px rgba(56,255,97,.18), inset 0 1px 0 rgba(255,255,255,.4);
}
.tag {
  box-shadow: 0 2px 10px rgba(0,0,0,.25), 0 0 10px rgba(56,255,97,.08);
}
.live-wave i {
  box-shadow: 0 0 10px rgba(56,255,97,.22), 0 0 16px rgba(180,75,255,.12);
}
.cover {
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 6px 16px rgba(0,0,0,.4);
}
.dock {
  box-shadow: 0 -8px 30px rgba(0,0,0,.45), 0 0 20px rgba(56,255,97,.04);
}
input, select, textarea {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03), 0 4px 14px rgba(0,0,0,.2);
}
.btn, .q, .cta.slim.ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 8px 20px rgba(0,0,0,.2);
}
.btn.primary, .cta {
  background: linear-gradient(180deg, rgba(232,255,122,.92), rgba(56,255,97,.82));
  border: 1px solid rgba(255,255,255,.28);
}
.btn.glass {
  background: rgba(18,18,20,.45);
  color: var(--text);
  font-size: 14px;
}
.spec { width: 100%; height: 22px; display: block; margin: 4px 0 6px; }
.mini-x { width: 28px; height: 28px; border-radius: 8px; color: var(--muted); font-size: 13px; }

:root { --font: "Montserrat", system-ui, sans-serif; }
h1, h2, .wm, .hello h1, .cta, .tile b {
  font-family: "Archivo Black", "Montserrat", sans-serif;
  font-weight: 400;
}
.aurora {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(158,46,255,.22), transparent 50%),
    radial-gradient(ellipse at 85% 10%, rgba(255,107,20,.16), transparent 46%),
    radial-gradient(ellipse at 70% 90%, rgba(56,255,97,.12), transparent 50%),
    #070708;
}
.app, .wrap, .top { position: relative; z-index: 1; }
.glass, .card, .session, .chat-item, .file, .q, .mini, .install, .dock, .sheet .panel, .brand-bar {
  background: linear-gradient(180deg, rgba(40,36,56,.42), rgba(12,12,16,.62));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  box-shadow:
    0 0 0 1px rgba(158,46,255,.12),
    0 10px 28px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; margin-bottom: 14px;
}
.brand-bar img { width: 44px; height: 44px; border-radius: 12px; }
.wm { font-size: 22px; letter-spacing: .02em; color: var(--cream); }
.wm .ready { color: var(--lime); }
.kicker {
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(246,241,230,.55); margin-bottom: 6px;
}
.hero-wave { padding: 16px 16px 12px; margin-bottom: 12px; }
.ready-line { color: var(--lime); font-size: 12px; letter-spacing: .14em; font-weight: 700; margin-top: 4px; }
.bento-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.bento-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.tile { padding: 14px 12px 12px; }
.tile b { display: block; font-size: 32px; color: var(--cream); margin-top: 4px; }
.tile b.vio, .tile.vio b { color: var(--violet); }
.tile b.ora, .tile.ora b, .tile.orange b { color: var(--orange); }
.hello h1 { font-size: 28px; color: var(--cream); }
.session { border-radius: 22px; }
.dock {
  border-radius: 24px 24px 0 0;
  border: 1px solid rgba(255,255,255,.1);
}
.dock button.on { color: var(--lime); }
.cta {
  background: linear-gradient(180deg, rgba(56,255,97,.95), rgba(14,184,71,.9));
  color: #04140a;
  border-radius: 18px;
}
input, select, textarea {
  background: rgba(8,8,10,.55);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.live-wave i {
  background: linear-gradient(180deg, #38FF61, #FF6B14 55%, #9E2EFF);
}

.glass, .card, .session, .chat-item, .file, .q, .mini, .install, .brand-bar, .sheet .panel {
  background: linear-gradient(165deg, rgba(255,255,255,.10) 0%, rgba(20,16,28,.28) 38%, rgba(8,8,12,.22) 100%);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow:
    0 0 0 1px rgba(158,46,255,.16),
    0 12px 36px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.38),
    inset 0 -20px 40px rgba(56,255,97,.04);
  position: relative;
  overflow: hidden;
}
.glass::after, .card::after, .session::after, .brand-bar::after {
  content: "";
  position: absolute; left: -20%; top: -60%; width: 140%; height: 70%;
  background: linear-gradient(115deg, rgba(255,255,255,.28), rgba(255,255,255,0) 55%);
  pointer-events: none;
  animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen {
  0%, 100% { transform: translateX(-8%) rotate(8deg); opacity: .35; }
  50% { transform: translateX(10%) rotate(8deg); opacity: .7; }
}
.fade-in, .session, .cta, .card, .chat-item {
  animation: rise .42s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translate3d(0,18px,0) scale(.97); }
  to { opacity: 1; transform: translate3d(0,0,0) scale(1); }
}
.pane-in { animation: pane .34s cubic-bezier(.2,.85,.2,1); }
@keyframes pane {
  from { opacity: 0; transform: translate3d(28px,0,0); }
  to { opacity: 1; transform: translate3d(0,0,0); }
}
.live-wave i {
  animation: bounce 0.7s ease-in-out infinite alternate;
}
@keyframes bounce {
  from { transform: scaleY(.28); opacity: .55; }
  to { transform: scaleY(1.08); opacity: 1; }
}
.pressed { transform: scale(.96); filter: brightness(1.15); }
.dock button.on { transform: translateY(-3px); }
@media (prefers-reduced-motion: reduce) {
  .glass::after, .card::after, .session::after { animation: none; }
}
.cover { background: #141218; border-radius: 16px; }
.cover-wave { width: 72px; height: 72px; display: block; }
.line-wave { height: 20px; width: 100%; margin-top: 8px; opacity: .9; }

button, a, .tab, .q, .cta, .btn, .icon-btn, .chips button, .dock button,
.session, .card, .chat-item, .file, .tag, .cover, input, select, textarea {
  transition:
    transform .28s cubic-bezier(.22,.82,.24,1),
    opacity .28s ease,
    background-color .28s ease,
    color .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    filter .28s ease;
}
.wrap { transition: opacity .32s ease, transform .32s cubic-bezier(.22,.82,.24,1); }
.pane-in {
  animation: pane .38s cubic-bezier(.16,.84,.22,1) both;
}
@keyframes pane {
  from { opacity: 0; transform: translate3d(22px, 8px, 0) scale(.985); }
  to { opacity: 1; transform: none; }
}
.sheet {
  transition: background-color .3s ease;
}
.sheet .panel {
  animation: sheetUp .36s cubic-bezier(.16,.84,.22,1) both;
}
@keyframes sheetUp {
  from { transform: translate3d(0, 28%, 0); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.dock button.on {
  transition: color .25s ease, transform .28s cubic-bezier(.22,.82,.24,1);
}
.tab { position: relative; }
.tab.on::after {
  content: "";
  position: absolute; left: 18%; right: 18%; bottom: 4px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
  animation: tabLine .28s ease both;
}
@keyframes tabLine {
  from { transform: scaleX(.3); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}
.cover-wave path, .line-wave path {
  transition: d .4s ease, fill .4s ease, stroke .4s ease;
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
