/* [project]/app/globals.css [app-client] (css) */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #252438;
  background: #f8f7fc;
  margin: 0;
  font-family: Inter, Segoe UI, PingFang SC, sans-serif;
}

button, input {
  font: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.site {
  --accent: #7868eb;
  --accent2: #eb79a8;
  --surface: #ffffffb8;
  --line: #443b691f;
  background: radial-gradient(circle at 50% -10%, #fff 0, #f7f4ff 39%, #f9f8fc 75%);
  min-height: 100vh;
  transition: background .4s;
  position: relative;
  overflow: hidden;
}

.theme-极光 {
  --accent: #3fbca7;
  --accent2: #6e8ef2;
  background: radial-gradient(circle at 50% -10%, #fff 0, #effcf9 38%, #f7f9fc 78%);
}

.theme-暮色 {
  --accent: #7259ce;
  --accent2: #f0888b;
  background: radial-gradient(circle at 50% -10%, #fff 0, #f7f0fa 40%, #faf7f7 78%);
}

.shell {
  z-index: 1;
  width: min(1160px, 100% - 44px);
  margin-inline: auto;
  position: relative;
}

.ambient {
  filter: blur(4px);
  opacity: .48;
  pointer-events: none;
  border-radius: 50%;
  position: absolute;
}

.ambient-one {
  background: radial-gradient(circle, #dacfff 0, #0000 68%);
  width: 420px;
  height: 420px;
  top: 100px;
  right: -180px;
}

.ambient-two {
  background: radial-gradient(circle, #ffd9e8 0, #0000 68%);
  width: 300px;
  height: 300px;
  top: 750px;
  left: -170px;
}

.nav {
  border-bottom: 1px solid var(--line);
  justify-content: space-between;
  align-items: center;
  height: 76px;
  display: flex;
}

.brand {
  color: #26243b;
  letter-spacing: -.02em;
  align-items: center;
  gap: 10px;
  font-weight: 750;
  text-decoration: none;
  display: flex;
}

.brand-mark {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  width: 35px;
  height: 35px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: 11px;
  place-items: center;
  display: grid;
}

.nav-links {
  gap: 30px;
  display: flex;
}

.nav-links a, .footer a {
  color: #67637b;
  font-size: 14px;
  text-decoration: none;
  transition: all .2s;
}

.nav-links a:hover, .footer a:hover {
  color: var(--accent);
}

.nav-actions {
  align-items: center;
  gap: 8px;
  display: flex;
}

.icon-button, .round-button {
  border: 1px solid var(--line);
  color: #68647c;
  cursor: pointer;
  background: #ffffffa3;
  place-items: center;
  transition: all .2s;
  display: grid;
}

.icon-button {
  border-radius: 12px;
  width: 38px;
  height: 38px;
}

.round-button {
  border-radius: 50%;
  width: 44px;
  height: 44px;
}

.icon-button:hover, .round-button:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  transform: translateY(-2px);
}

.avatar {
  color: #6656cc;
  background: #ece8ff;
  border: 0;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-weight: 700;
}

.menu-button {
  display: none;
}

.hero {
  text-align: center;
  padding: 104px 0 110px;
}

.eyebrow {
  color: #6c5ed0;
  text-transform: uppercase;
  letter-spacing: .08em;
  background: #ffffffad;
  border: 1px solid #7868eb2e;
  border-radius: 99px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 750;
  display: inline-flex;
}

.pulse-dot {
  background: #7a69ed;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  animation: 2s infinite pulse;
  box-shadow: 0 0 0 5px #7a69ed1a;
}

.hero h1 {
  letter-spacing: -.06em;
  margin: 30px 0 24px;
  font-size: clamp(46px, 7vw, 82px);
  font-weight: 780;
  line-height: 1.03;
}

.hero h1 span {
  background: linear-gradient(100deg, var(--accent), var(--accent2));
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero > p {
  color: #6d697f;
  max-width: 660px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions, .button-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.hero-actions {
  justify-content: center;
  margin-top: 34px;
}

.button {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 17px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .2s, box-shadow .2s, background .2s;
  display: inline-flex;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 65%, var(--accent2)));
  box-shadow: 0 9px 22px color-mix(in srgb, var(--accent) 24%, transparent);
}

.button.secondary {
  color: #4e4965;
  border-color: var(--line);
  background: #ffffffc7;
}

.button.ghost {
  color: var(--accent);
  background: none;
}

.button:disabled {
  opacity: .42;
  cursor: not-allowed;
}

.theme-switcher {
  color: #8a8699;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 46px;
  font-size: 12px;
  display: flex;
}

.theme-switcher > span {
  margin-right: 5px;
}

.theme-switcher button {
  color: #878296;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 8px;
  padding: 6px 10px;
}

.theme-switcher button.active {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 3px 12px #26204614;
}

.section {
  padding: 92px 0;
}

.section-heading {
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 34px;
  display: flex;
}

.section-heading span {
  color: var(--accent);
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 800;
}

.section-heading h2 {
  letter-spacing: -.04em;
  margin: 10px 0 0;
  font-size: 34px;
}

.section-heading p {
  color: #777286;
  width: min(420px, 100%);
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  display: grid;
}

.feature-card, .demo-panel, .wide-panel, .stat {
  border: 1px solid var(--line);
  background: var(--surface);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 55px #3b33590f;
}

.feature-card {
  border-radius: 24px;
  min-height: 270px;
  padding: 27px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.feature-card:after {
  content: "";
  opacity: .18;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  position: absolute;
  top: -70px;
  right: -80px;
}

.feature-card.coral:after {
  background: #ff7da5;
}

.feature-card.violet:after {
  background: #8a6cff;
}

.feature-card.blue:after {
  background: #54a6f5;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px #3b33591c;
}

.card-icon {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 15px;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
}

.tag, .badge {
  border: 1px solid var(--line);
  color: #7a758b;
  background: #ffffff80;
  border-radius: 99px;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 750;
  display: inline-flex;
}

.feature-card h3 {
  margin: 13px 0 8px;
  font-size: 19px;
}

.feature-card p {
  color: #787386;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.7;
}

.feature-card a {
  color: var(--accent);
  align-items: center;
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  display: flex;
}

.stat-grid {
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 20px;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 16px;
  display: grid;
  overflow: hidden;
}

.stat {
  border: 0;
  border-radius: 0;
  gap: 5px;
  padding: 22px;
  display: grid;
}

.stat strong {
  letter-spacing: -.04em;
  font-size: 24px;
}

.stat span {
  font-size: 12px;
  font-weight: 700;
}

.stat small {
  color: #938fa0;
  font-size: 10px;
}

.panel-grid {
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  display: grid;
}

.demo-panel, .wide-panel {
  border-radius: 24px;
  padding: 25px;
}

.panel-title, .chat-header {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-weight: 750;
  display: flex;
}

.panel-title svg {
  color: var(--accent);
}

.button-row {
  margin: 14px 0 24px;
}

.field {
  gap: 8px;
  margin-bottom: 14px;
  display: grid;
}

.field > span:first-child, .control-line, .range-line {
  color: #625e70;
  font-size: 12px;
  font-weight: 700;
}

.field input {
  border: 1px solid var(--line);
  color: #343143;
  background: #ffffffa6;
  border-radius: 12px;
  outline: none;
  width: 100%;
  height: 43px;
  padding: 0 13px;
}

.field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 10%, transparent);
}

.input-with-icon {
  align-items: center;
  position: relative;
  display: flex !important;
}

.input-with-icon svg {
  color: #9b97a7;
  position: absolute;
  left: 13px;
}

.input-with-icon input {
  padding-left: 39px;
}

.control-line {
  justify-content: space-between;
  align-items: center;
  margin: 17px 0;
  display: flex;
}

.switch {
  cursor: pointer;
  background: #d9d6e1;
  border: 0;
  border-radius: 99px;
  width: 42px;
  height: 24px;
  padding: 3px;
}

.switch span {
  background: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  transition: all .2s;
  display: block;
  box-shadow: 0 2px 5px #0002;
}

.switch.active {
  background: var(--accent);
}

.switch.active span {
  transform: translateX(18px);
}

.range-line {
  grid-template-columns: 1fr auto;
  gap: 8px;
  display: grid;
}

.range-line span {
  align-items: center;
  gap: 7px;
  display: flex;
}

.range-line input {
  width: 100%;
  accent-color: var(--accent);
  grid-column: 1 / -1;
}

.chat-panel {
  padding: 0;
  overflow: hidden;
}

.chat-header {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 20px 22px;
}

.chat-header > div {
  align-items: center;
  gap: 9px;
  display: flex;
}

.online {
  background: #42c99a;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  box-shadow: 0 0 0 4px #42c99a18;
}

.chat-body {
  background: linear-gradient(145deg, #f8f6ffb3, #ffffff4d);
  flex-direction: column;
  gap: 12px;
  min-height: 270px;
  padding: 22px;
  display: flex;
}

.bubble {
  border-radius: 16px;
  gap: 5px;
  max-width: 74%;
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.55;
  display: grid;
}

.bubble time {
  opacity: .6;
  font-size: 9px;
}

.bubble.assistant {
  border: 1px solid var(--line);
  background: #fff;
  border-bottom-left-radius: 5px;
}

.bubble.user {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-bottom-right-radius: 5px;
  align-self: end;
}

.typing {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  gap: 4px;
  width: max-content;
  padding: 12px;
  display: flex;
}

.typing i {
  background: #aaa5b7;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  animation: 1.2s infinite typing;
}

.typing i:nth-child(2) {
  animation-delay: .15s;
}

.typing i:nth-child(3) {
  animation-delay: .3s;
}

.chat-compose {
  border-top: 1px solid var(--line);
  gap: 8px;
  padding: 14px;
  display: flex;
}

.chat-compose input {
  background: #f5f3f8;
  border: 0;
  border-radius: 12px;
  outline: none;
  flex: 1;
  min-width: 0;
  padding: 0 13px;
}

.chat-compose button {
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 12px;
  place-items: center;
  width: 40px;
  height: 40px;
  display: grid;
}

.feedback-panel {
  flex-direction: column;
  display: flex;
}

.notice {
  border: 1px solid var(--line);
  border-radius: 15px;
  gap: 12px;
  margin-bottom: 10px;
  padding: 14px;
  display: flex;
}

.notice > span {
  border-radius: 10px;
  place-items: center;
  width: 31px;
  height: 31px;
  display: grid;
}

.notice.success > span {
  color: #158a68;
  background: #dbf8ed;
}

.notice.info > span {
  color: #6654cc;
  background: #ebe8ff;
}

.notice strong {
  font-size: 12px;
}

.notice p {
  color: #858090;
  margin: 4px 0 0;
  font-size: 11px;
}

.feedback-panel .button-row {
  margin-top: auto;
  margin-bottom: 0;
}

.wide-panel {
  padding: 0;
  overflow: hidden;
}

.tabs {
  border-bottom: 1px solid var(--line);
  gap: 6px;
  padding: 15px 20px;
  display: flex;
}

.tabs button {
  color: #898493;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 10px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 700;
}

.tabs button.active {
  color: var(--accent);
  background: #fff;
  box-shadow: 0 4px 12px #352c6510;
}

.tab-content {
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 30px;
  display: grid;
}

.badge {
  margin-right: 6px;
}

.badge.live {
  color: #168967;
  background: #e5f9f2;
}

.badge.live i {
  background: #31ba8d;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}

.badge.warm {
  color: #c06837;
  background: #fff2e9;
}

.tab-content h3 {
  margin: 20px 0 8px;
}

.tab-content p {
  color: #858090;
  font-size: 12px;
}

.progress-group > div:not(.progress) {
  justify-content: space-between;
  margin: 5px 0 8px;
  font-size: 11px;
  display: flex;
}

.progress {
  background: #eeebf3;
  border-radius: 99px;
  height: 7px;
  margin-bottom: 18px;
  overflow: hidden;
}

.progress i {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  height: 100%;
  animation: 1.2s both load;
  display: block;
}

.violet-progress i {
  background: linear-gradient(90deg, #63b5f4, #8d73ef);
}

.skeleton-grid {
  grid-template-columns: 1fr 1fr 1.35fr;
  gap: 14px;
  padding: 0 30px 30px;
  display: grid;
}

.skeleton-card, .media-card {
  border: 1px solid var(--line);
  background: #ffffff7a;
  border-radius: 16px;
  padding: 15px;
}

.skeleton-card {
  grid-template-columns: 38px 1fr;
  gap: 8px;
  display: grid;
}

.skeleton-card i {
  background: #ebe8f0;
  border-radius: 11px;
  grid-row: 1 / 4;
  width: 38px;
  height: 38px;
}

.skeleton-card span, .skeleton-card b {
  background: linear-gradient(90deg, #ebe8f0, #f6f4f8, #ebe8f0) 0 0 / 200%;
  border-radius: 5px;
  height: 7px;
  animation: 1.8s infinite shimmer;
}

.skeleton-card span:nth-of-type(2) {
  width: 70%;
}

.skeleton-card b {
  width: 45%;
  height: 5px;
}

.media-card {
  align-items: center;
  gap: 12px;
  display: flex;
}

.media-card > button {
  color: #fff;
  background: var(--accent);
  border: 0;
  border-radius: 50%;
  place-items: center;
  width: 39px;
  height: 39px;
  display: grid;
}

.media-card > div:nth-child(2) {
  flex: 1;
  gap: 4px;
  display: grid;
}

.media-card strong {
  font-size: 11px;
}

.media-card span {
  color: #8c8796;
  font-size: 9px;
}

.equalizer {
  align-items: end;
  gap: 2px;
  height: 20px;
  display: flex;
}

.equalizer i {
  background: var(--accent);
  border-radius: 3px;
  width: 3px;
  height: 7px;
}

.equalizer.playing i {
  animation: .8s infinite alternate eq;
}

.equalizer.playing i:nth-child(2) {
  animation-delay: .2s;
}

.equalizer.playing i:nth-child(3) {
  animation-delay: .4s;
}

.equalizer.playing i:nth-child(4) {
  animation-delay: .1s;
}

.footer {
  border-top: 1px solid var(--line);
  color: #898594;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
  font-size: 11px;
  display: flex;
}

.toast {
  z-index: 20;
  border: 1px solid var(--line);
  background: #fffffff0;
  border-radius: 17px;
  align-items: center;
  gap: 12px;
  width: min(350px, 100% - 32px);
  padding: 14px;
  animation: .35s toastIn;
  display: flex;
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 0 22px 70px #3226502b;
}

.toast > span {
  color: #fff;
  background: #35b68b;
  border-radius: 10px;
  place-items: center;
  width: 33px;
  height: 33px;
  display: grid;
}

.toast div {
  flex: 1;
}

.toast strong {
  font-size: 12px;
}

.toast p {
  color: #817d8d;
  margin: 3px 0;
  font-size: 10px;
}

.toast button, .modal-close {
  color: #898593;
  cursor: pointer;
  background: none;
  border: 0;
}

.modal-backdrop {
  z-index: 30;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #251f3747;
  place-items: center;
  padding: 20px;
  animation: .2s fadeIn;
  display: grid;
  position: fixed;
  inset: 0;
}

.modal {
  background: #fff;
  border: 1px solid #fffc;
  border-radius: 27px;
  width: min(440px, 100%);
  padding: 30px;
  animation: .3s modalIn;
  position: relative;
  box-shadow: 0 30px 100px #28203b40;
}

.modal-art {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 22px;
  place-items: center;
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  display: grid;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}

.modal h2 {
  margin: 0 0 10px;
  font-size: 25px;
}

.modal p {
  color: #777283;
  font-size: 13px;
  line-height: 1.7;
}

.modal-actions {
  justify-content: flex-end;
  gap: 9px;
  margin-top: 25px;
  display: flex;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px #7a69ed00;
  }
}

@keyframes typing {
  50% {
    transform: translateY(-4px);
  }
}

@keyframes load {
  from {
    width: 0;
  }
}

@keyframes shimmer {
  to {
    background-position: -200%;
  }
}

@keyframes eq {
  to {
    height: 19px;
  }
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px)scale(.97);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    height: 66px;
  }

  .nav-links {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 16px;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    display: none;
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    box-shadow: 0 20px 50px #332a501c;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 10px;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    padding: 75px 0 80px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero > p {
    font-size: 14px;
  }

  .section {
    padding: 65px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .card-grid, .panel-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tab-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .skeleton-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-card {
    grid-column: 1 / -1;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 25px 0;
  }

  .ambient-one {
    right: -300px;
  }

  .modal-actions .button {
    flex: 1;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 40px;
  }

  .section-heading h2 {
    font-size: 29px;
  }

  .stat {
    padding: 17px;
  }

  .demo-panel {
    padding: 19px;
  }

  .tab-content, .skeleton-grid {
    padding-left: 19px;
    padding-right: 19px;
  }

  .skeleton-grid {
    grid-template-columns: 1fr;
  }

  .media-card {
    grid-column: auto;
  }

  .theme-switcher {
    flex-wrap: wrap;
  }

  .button-row .button {
    flex: 1;
  }

  .toast {
    bottom: 16px;
    right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/*# sourceMappingURL=app_globals_71f961d1.css.map*/