/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 14px;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100vw;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

@media (min-width: 768px) {
  body::-webkit-scrollbar {
    display: none;
  }
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
}

input,
select {
  font: inherit;
  color: inherit;
}

svg {
  display: block;
  flex-shrink: 0;
}

.hidden {
  display: none !important;
}

/* Responsive view toggles */
.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

@media (max-width: 767px) {
  .desktop-view {
    display: none !important;
  }

  .mobile-view {
    display: block !important;
  }
}
