:root {
  color-scheme: dark;
  --bg: #071014;
  --bg-2: #0b171d;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f6fbff;
  --muted: #a9bbc5;
  --soft: #d8e6eb;
  --cyan: #5eead4;
  --blue: #60a5fa;
  --gold: #f8d47a;
  --coral: #fb8f67;
  --green: #81f2b2;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --soft-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  --radius: 8px;
  --max: 1180px;
  --nav-h: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(94, 234, 212, 0.14), transparent 28rem),
    radial-gradient(circle at 15% 20%, rgba(248, 212, 122, 0.11), transparent 24rem),
    linear-gradient(140deg, var(--bg), var(--bg-2) 48%, #061217);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: var(--nav-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 16, 20, 0.76);
  backdrop-filter: blur(22px);
}

.nav-inner {
  display: flex;
  min-height: var(--nav-h);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav .brand {
  cursor: pointer;
  white-space: nowrap;
}

.nav .brand:hover,
.nav .brand:focus-visible {
  color: var(--text);
  outline: none;
  transform: translateY(-1px);
}

.nav .brand:focus-visible {
  box-shadow: 0 0 0 3px rgba(94, 234, 212, 0.24);
}

.nav .brand:hover .brand-mark,
.nav .brand:focus-visible .brand-mark {
  border-color: var(--line-strong);
  box-shadow:
    0 16px 32px rgba(94, 234, 212, 0.18),
    0 0 0 1px rgba(94, 234, 212, 0.16);
}

.nav-brand-back {
  position: relative;
  flex: 0 0 232px;
  min-height: 50px;
  padding: 6px 10px 6px 8px;
  border: 1px solid transparent;
  overflow: hidden;
}

.nav-brand-back:hover,
.nav-brand-back:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.brand-back-arrow {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 18px;
  color: var(--cyan);
  font-weight: 900;
  transform: translateX(0);
  transition: transform 0.2s ease;
}

.nav-brand-back:hover .brand-back-arrow,
.nav-brand-back:focus-visible .brand-back-arrow {
  transform: translateX(-3px);
}

.brand-label-stack {
  position: relative;
  display: inline-grid;
  align-items: center;
  width: 146px;
  min-height: 1.4em;
  overflow: hidden;
}

.brand-label {
  grid-area: 1 / 1;
  color: var(--soft);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.brand-label-back {
  opacity: 0;
  transform: translateX(10px);
}

.nav-brand-back:hover .brand-label-demo,
.nav-brand-back:focus-visible .brand-label-demo {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-brand-back:hover .brand-label-back,
.nav-brand-back:focus-visible .brand-label-back {
  opacity: 1;
  transform: translateX(0);
}

.compact-back-link {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.compact-back-link:hover,
.compact-back-link:focus-visible {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.13);
  outline: none;
  transform: translateY(-1px);
}

.compact-back-text {
  display: none;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(94, 234, 212, 0.22), rgba(248, 212, 122, 0.18));
  box-shadow: 0 16px 32px rgba(94, 234, 212, 0.12);
}

.brand span:last-child {
  color: var(--soft);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 750;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

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

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 40px;
  min-height: 36px;
  border: 0;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 900;
}

.language-switcher button.active {
  color: #041012;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
}

.mobile-language-switcher {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

.menu-open .menu-toggle span {
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::before {
  transform: translateY(0) rotate(90deg);
}

.menu-open .menu-toggle span::after {
  opacity: 0;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  cursor: pointer;
  font-weight: 850;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.13);
}

.btn.primary {
  border-color: rgba(94, 234, 212, 0.48);
  color: #041012;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 18px 42px rgba(94, 234, 212, 0.18);
}

.btn.ghost {
  background: transparent;
}

.hero {
  position: relative;
  min-height: calc(88vh - var(--nav-h));
  display: grid;
  align-items: center;
  padding: 72px 0 42px;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 16, 20, 0.92), rgba(7, 16, 20, 0.58) 48%, rgba(7, 16, 20, 0.18)),
    linear-gradient(180deg, rgba(7, 16, 20, 0), var(--bg) 98%),
    url("../assets/images/showcase-hero.png") center right / cover no-repeat;
  content: "";
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(180deg, transparent, var(--bg));
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: 46px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  font-size: 0.9rem;
  font-weight: 800;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(129, 242, 178, 0.45);
  animation: pulse 1.8s infinite;
}

h1,
.page-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.1rem, 6.2vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.gradient-text {
  background: linear-gradient(135deg, #fff, var(--cyan) 44%, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle,
.page-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-panel {
  display: grid;
  gap: 14px;
  align-self: end;
}

.floating-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(20px);
}

.hero-metric {
  padding: 18px;
  animation: floaty 6s ease-in-out infinite;
}

.hero-metric:nth-child(2) {
  animation-delay: -2s;
}

.hero-metric:nth-child(3) {
  animation-delay: -4s;
}

.metric-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.metric-value {
  margin-top: 4px;
  font-size: 2rem;
  font-weight: 950;
}

.metric-note {
  color: var(--soft);
  font-size: 0.92rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 22px;
  left: 50%;
  display: grid;
  width: 30px;
  height: 48px;
  place-items: start center;
  border: 1px solid var(--line);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  width: 4px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 96px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.025);
}

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

.section-kicker {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.052));
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 234, 212, 0.42);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.065));
}

.icon-chip {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(94, 234, 212, 0.12);
  color: var(--cyan);
  font-weight: 950;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.industry-card {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-preview {
  display: grid;
  gap: 8px;
  margin: 20px 0;
}

.preview-bar,
.preview-line {
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-bar {
  width: 58%;
  background: linear-gradient(90deg, var(--cyan), var(--gold));
}

.preview-line:nth-child(2) {
  width: 84%;
}

.preview-line:nth-child(3) {
  width: 66%;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
}

.page-hero {
  padding: 94px 0 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
}

.mini-panel {
  padding: 22px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(320px, 0.54fr);
  gap: 24px;
  align-items: start;
}

.component-demo,
.store-shell,
.dashboard-shell,
.contact-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.demo-toolbar {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.demo-body {
  padding: 20px;
}

.pricing-card {
  display: grid;
  gap: 18px;
  align-content: start;
}

.price {
  font-size: 2.6rem;
  font-weight: 950;
}

.features {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.features li {
  color: var(--soft);
}

.features li::before {
  color: var(--green);
  content: "+ ";
  font-weight: 900;
}

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

.product-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.product-art {
  height: 118px;
  margin-bottom: 14px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 30% 24%, rgba(248, 212, 122, 0.5), transparent 28px),
    linear-gradient(135deg, rgba(94, 234, 212, 0.36), rgba(96, 165, 250, 0.16));
}

.store-controls,
.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.input,
textarea.input,
select.input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

textarea.input {
  min-height: 128px;
  resize: vertical;
}

.cart-panel,
.dashboard-sidebar {
  padding: 20px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
}

.dashboard-sidebar {
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-main {
  padding: 20px;
}

.dash-nav {
  display: grid;
  gap: 8px;
}

.dash-nav button {
  justify-content: flex-start;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--soft);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.faq summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 850;
}

.faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.assistant {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
}

.assistant-panel {
  position: absolute;
  right: 0;
  bottom: 64px;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 16, 20, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.assistant.open .assistant-panel {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.assistant-head,
.assistant-messages,
.assistant-form {
  padding: 14px;
}

.assistant-head,
.assistant-form {
  display: flex;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.assistant-form {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.assistant-messages {
  display: grid;
  max-height: 300px;
  gap: 10px;
  overflow-y: auto;
}

.message {
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

.message.user {
  justify-self: end;
  background: rgba(94, 234, 212, 0.17);
}

.assistant-toggle {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: 1px solid rgba(94, 234, 212, 0.55);
  color: #041012;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 20px 40px rgba(94, 234, 212, 0.24);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

[data-animate] {
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

[data-animate].in-view {
  transform: translateY(0);
  opacity: 1;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(129, 242, 178, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(129, 242, 178, 0);
  }
}

@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes scrollDot {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

@media (max-width: 1060px) {
  .hero-grid,
  .page-hero .container,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid.cols-4,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-inner {
    gap: 12px;
  }

  .nav-brand-back {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0;
    border-color: transparent;
    background: transparent;
  }

  .nav-brand-back:hover,
  .nav-brand-back:focus-visible {
    background: transparent;
  }

  .brand-back-arrow {
    display: none;
  }

  .brand-label-stack {
    width: auto;
    min-width: 0;
  }

  .brand-label {
    position: static;
  }

  .brand-label-demo {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-label-back,
  .nav-brand-back:hover .brand-label-back,
  .nav-brand-back:focus-visible .brand-label-back {
    display: none;
  }

  .nav-brand-back:hover .brand-label-demo,
  .nav-brand-back:focus-visible .brand-label-demo {
    opacity: 1;
    transform: none;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 14px auto;
    display: grid;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(7, 16, 20, 0.96);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: grid;
  }

  .compact-back-link {
    display: inline-flex;
    flex: 0 0 46px;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-actions > .language-switcher {
    display: none;
  }

  .nav-links .mobile-language-switcher {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding: 40px 0 32px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(7, 16, 20, 0.76), rgba(7, 16, 20, 0.93)),
      url("../assets/images/showcase-hero.png") center / cover no-repeat;
  }

  h1,
  .page-title {
    font-size: clamp(2.35rem, 11.5vw, 3.55rem);
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  .section {
    padding: 70px 0;
  }

  .section-head,
  .footer-grid {
    display: grid;
    align-items: start;
  }

  .hero-panel,
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .store-controls,
  .form-grid,
  .product-grid,
  .dashboard-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .dashboard-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .assistant {
    right: 14px;
    bottom: 14px;
  }

  .assistant-toggle {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
}

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