/* ============================================================================
   TextGlam design system
   ----------------------------------------------------------------------------
   A dense, dark-first product UI. Near-black neutrals, one warm amber accent,
   1px borders defining structure, 6px/10px radii, tabular numerals for data.
   Tailwind (CDN) handles layout utilities; this file owns tokens, typography,
   and every reusable component so nothing looks like default Tailwind.
   ========================================================================== */

/* ── Design tokens ───────────────────────────────────────────────────────── */
:root,
:root[data-theme="dark"] {
  color-scheme: dark;

  /* Surfaces (near-black → raised) */
  --bg:            #0A0A0A;
  --surface:       #121212;
  --surface-2:     #171717;
  --surface-3:     #1F1F1F;
  --elevated:      #1A1A1A;

  /* Borders */
  --border:        #262626;
  --border-strong: #333333;
  --border-focus:  #4A3A17;

  /* Text (warm greys) */
  --text:          #EDEDED;
  --text-muted:    #A3A3A3;
  --text-subtle:   #6E6E6E;
  --text-inverse:  #0A0A0A;

  /* Accent — a single warm amber. Used sparingly. */
  --accent:        #F5A623;
  --accent-hover:  #FFB733;
  --accent-active: #D98E14;
  --accent-soft:   rgba(245, 166, 35, 0.12);
  --accent-ring:   rgba(245, 166, 35, 0.40);
  --on-accent:     #1A1206;

  /* Semantic */
  --success:       #3FB950;
  --success-soft:  rgba(63, 185, 80, 0.12);
  --danger:        #F05252;
  --danger-soft:   rgba(240, 82, 82, 0.12);
  --warning:       #E3A008;
  --info:          #58A6FF;

  /* Elevation — shadows only on overlays */
  --shadow-pop:    0 8px 28px -6px rgba(0,0,0,0.6), 0 2px 6px -2px rgba(0,0,0,0.5);
  --shadow-sheet:  0 -8px 32px -8px rgba(0,0,0,0.7);

  /* Radii */
  --r-sm: 6px;   /* inputs, buttons */
  --r-md: 10px;  /* cards */
  --r-lg: 14px;  /* modals */

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur:  150ms;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, Consolas, monospace;
}

:root[data-theme="light"] {
  color-scheme: light;

  --bg:            #F7F7F6;
  --surface:       #FFFFFF;
  --surface-2:     #FBFBFA;
  --surface-3:     #F2F2F0;
  --elevated:      #FFFFFF;

  --border:        #E4E4E1;
  --border-strong: #D0D0CC;
  --border-focus:  #EAD9AE;

  --text:          #1A1A1A;
  --text-muted:    #5C5C5C;
  --text-subtle:   #8A8A8A;
  --text-inverse:  #FFFFFF;

  --accent:        #C77D0A;
  --accent-hover:  #B06F08;
  --accent-active: #965E06;
  --accent-soft:   rgba(199, 125, 10, 0.10);
  --accent-ring:   rgba(199, 125, 10, 0.35);
  --on-accent:     #FFFFFF;

  --success:       #1A7F37;
  --success-soft:  rgba(26, 127, 55, 0.10);
  --danger:        #C4362E;
  --danger-soft:   rgba(196, 54, 46, 0.10);
  --warning:       #B4690E;
  --info:          #0969DA;

  --shadow-pop:    0 8px 28px -8px rgba(0,0,0,0.18), 0 2px 6px -2px rgba(0,0,0,0.10);
  --shadow-sheet:  0 -8px 32px -8px rgba(0,0,0,0.16);
}

/* ── Base ────────────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv02","cv03","cv04","cv11";
}

::selection { background: var(--accent-soft); color: var(--text); }

h1,h2,h3,h4 { margin: 0; font-weight: 600; letter-spacing: -0.014em; color: var(--text); }
h1 { font-size: 1.6rem; line-height: 1.2; }
h2 { font-size: 1.25rem; line-height: 1.25; }
h3 { font-size: 1.0rem; }
p  { margin: 0; }

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

.tabular { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); }

/* Custom scrollbars */
* { scrollbar-width: thin; scrollbar-color: var(--border-strong) transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 999px; border: 3px solid var(--bg); }
*::-webkit-scrollbar-track { background: transparent; }

/* Visible keyboard focus everywhere */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 36px; padding: 0 14px;
  font-size: 13px; font-weight: 550; line-height: 1;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease),
              color var(--dur) var(--ease), transform var(--dur) var(--ease);
  white-space: nowrap; user-select: none;
}
.btn:active { transform: translateY(0.5px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; }
.btn svg { width: 15px; height: 15px; }

.btn-primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn-primary:hover:not(:disabled) { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-primary:active:not(:disabled) { background: var(--accent-active); }

.btn-secondary { background: var(--surface-3); color: var(--text); border-color: var(--border-strong); }
.btn-secondary:hover:not(:disabled) { background: var(--elevated); border-color: var(--border-strong); }

.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover:not(:disabled) { background: var(--surface-3); color: var(--text); }

.btn-danger { background: transparent; color: var(--danger); border-color: var(--border-strong); }
.btn-danger:hover:not(:disabled) { background: var(--danger-soft); border-color: var(--danger); }

.btn-sm { height: 30px; padding: 0 10px; font-size: 12px; }
.btn-lg { height: 42px; padding: 0 20px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-icon { width: 34px; padding: 0; }

/* ── Inputs ──────────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.label { font-size: 12.5px; font-weight: 550; color: var(--text-muted); }
.hint  { font-size: 12px; color: var(--text-subtle); }
.error-text { font-size: 12px; color: var(--danger); }

.input, .textarea, .select {
  width: 100%;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 0 11px;
  height: 36px;
  font-size: 13.5px;
  font-family: inherit;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.textarea { height: auto; padding: 9px 11px; line-height: 1.55; resize: vertical; min-height: 96px; }
.input::placeholder, .textarea::placeholder { color: var(--text-subtle); }
.input:hover, .textarea:hover, .select:hover { border-color: var(--border-focus); }
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}
.input:disabled, .textarea:disabled { opacity: 0.55; cursor: not-allowed; }
.input.is-invalid, .textarea.is-invalid { border-color: var(--danger); }
.input.is-invalid:focus { box-shadow: 0 0 0 3px var(--danger-soft); }

.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A3A3A3' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 11px center;
  padding-right: 32px;
}

/* Checkbox / radio */
.checkbox {
  appearance: none; width: 16px; height: 16px; flex: none;
  border: 1.5px solid var(--border-strong); border-radius: 4px;
  background: var(--surface); cursor: pointer; position: relative;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.checkbox:checked { background: var(--accent); border-color: var(--accent); }
.checkbox:checked::after {
  content: ""; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231A1206' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checkbox:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* ── Cards & surfaces ────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.card-pad { padding: 18px; }
.card-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.card-title { font-size: 13.5px; font-weight: 600; }
.card-sub { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

.divider { height: 1px; background: var(--border); border: 0; margin: 0; }

/* ── Badges / pills ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  height: 20px; padding: 0 8px; border-radius: 999px;
  font-size: 11.5px; font-weight: 550; letter-spacing: 0.01em;
  border: 1px solid var(--border-strong); color: var(--text-muted);
}
.badge-accent  { color: var(--accent); background: var(--accent-soft); border-color: transparent; }
.badge-success { color: var(--success); background: var(--success-soft); border-color: transparent; }
.badge-danger  { color: var(--danger); background: var(--danger-soft); border-color: transparent; }
.badge-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ── Tables ──────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table thead th {
  text-align: left; font-weight: 550; color: var(--text-subtle);
  font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 9px 14px; border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.table tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.table tbody tr { transition: background var(--dur) var(--ease); }
.table tbody tr:hover { background: var(--surface-2); }
.table tbody tr:last-child td { border-bottom: 0; }

/* ── Toasts ──────────────────────────────────────────────────────────────── */
#toast-region {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  display: flex; flex-direction: column; gap: 10px; max-width: min(360px, calc(100vw - 32px));
}
.toast {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--elevated); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); padding: 11px 13px;
  box-shadow: var(--shadow-pop);
  animation: toast-in var(--dur) var(--ease);
}
.toast.leaving { animation: toast-out var(--dur) var(--ease) forwards; }
.toast-icon { flex: none; width: 16px; height: 16px; margin-top: 1px; }
.toast-body { font-size: 13px; color: var(--text); }
.toast-success .toast-icon { color: var(--success); }
.toast-error   .toast-icon { color: var(--danger); }
.toast-info    .toast-icon { color: var(--info); }
@keyframes toast-in  { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes toast-out { to { opacity: 0; transform: translateX(12px); } }

/* ── Modal / dialog ──────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center; padding: 16px;
  animation: fade var(--dur) var(--ease);
}
.modal {
  width: 100%; max-width: 440px;
  background: var(--surface); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop);
  animation: modal-in var(--dur) var(--ease);
}
.modal-header { padding: 16px 18px 0; }
.modal-body { padding: 12px 18px; color: var(--text-muted); font-size: 13.5px; }
.modal-footer { padding: 14px 18px; display: flex; gap: 8px; justify-content: flex-end; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(8px) scale(0.98); } to { opacity: 1; transform: none; } }

/* ── Command palette ─────────────────────────────────────────────────────── */
.cmdk-backdrop {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 12vh 16px 16px; animation: fade var(--dur) var(--ease);
}
.cmdk {
  width: 100%; max-width: 560px;
  background: var(--elevated); border: 1px solid var(--border-strong);
  border-radius: var(--r-lg); box-shadow: var(--shadow-pop); overflow: hidden;
  animation: modal-in var(--dur) var(--ease);
}
.cmdk-input {
  width: 100%; height: 48px; padding: 0 16px; border: 0;
  background: transparent; color: var(--text); font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.cmdk-input:focus { outline: none; }
.cmdk-list { max-height: 340px; overflow-y: auto; padding: 6px; }
.cmdk-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: var(--r-sm); cursor: pointer;
  font-size: 13.5px; color: var(--text-muted);
}
.cmdk-item[aria-selected="true"] { background: var(--surface-3); color: var(--text); }
.cmdk-item svg { width: 15px; height: 15px; color: var(--text-subtle); }
.cmdk-empty { padding: 24px; text-align: center; color: var(--text-subtle); font-size: 13px; }
.kbd {
  display: inline-flex; align-items: center; height: 18px; padding: 0 5px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-muted);
  background: var(--surface-3); border: 1px solid var(--border-strong);
  border-radius: 4px;
}

/* ── Skeleton loaders ────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--surface-3) 25%, var(--elevated) 37%, var(--surface-3) 63%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border-radius: var(--r-sm);
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* ── Empty states ────────────────────────────────────────────────────────── */
.empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 48px 24px; gap: 12px;
}
.empty-icon {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: var(--text-subtle); background: var(--surface-3);
  border: 1px solid var(--border); border-radius: var(--r-md);
}
.empty-title { font-size: 14px; font-weight: 600; color: var(--text); }
.empty-sub { font-size: 13px; color: var(--text-muted); max-width: 320px; }

/* ── Progress ────────────────────────────────────────────────────────────── */
.progress { height: 6px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.progress-bar { height: 100%; background: var(--accent); border-radius: 999px; transition: width 200ms var(--ease); }

/* ── Meter (usage) ───────────────────────────────────────────────────────── */
.meter { height: 8px; background: var(--surface-3); border-radius: 999px; overflow: hidden; }
.meter-fill { height: 100%; background: var(--accent); border-radius: 999px; }
.meter-fill.is-warn { background: var(--warning); }
.meter-fill.is-over { background: var(--danger); }

/* ── App shell layout ────────────────────────────────────────────────────── */
.shell { display: grid; grid-template-columns: 244px 1fr; min-height: 100vh; }
.sidebar {
  position: sticky; top: 0; height: 100vh;
  background: var(--surface); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; overflow: hidden;
}
.sidebar-brand {
  display: flex; align-items: center; gap: 9px;
  height: 56px; padding: 0 16px; border-bottom: 1px solid var(--border);
  font-weight: 650; font-size: 14.5px; letter-spacing: -0.01em;
}
.sidebar-nav { flex: 1; overflow-y: auto; padding: 10px 10px; display: flex; flex-direction: column; gap: 2px; }
.nav-section { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-subtle); padding: 12px 10px 5px; font-weight: 600; }
.nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: var(--r-sm);
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.nav-item svg { width: 16px; height: 16px; flex: none; }
.nav-item:hover { background: var(--surface-3); color: var(--text); }
.nav-item.active { background: var(--accent-soft); color: var(--accent); }
.nav-item.active svg { color: var(--accent); }

.sidebar-foot { border-top: 1px solid var(--border); padding: 10px; }

.main { display: flex; flex-direction: column; min-width: 0; }
.topbar {
  position: sticky; top: 0; z-index: 40;
  height: 56px; display: flex; align-items: center; gap: 12px;
  padding: 0 20px; background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
}
.page { padding: 22px; max-width: 1180px; width: 100%; margin: 0 auto; }
.page-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.page-title { font-size: 1.35rem; }
.page-sub { color: var(--text-muted); font-size: 13.5px; margin-top: 3px; }

/* Search box in the topbar */
.topbar-search {
  display: flex; align-items: center; gap: 8px;
  height: 34px; padding: 0 10px; min-width: 220px;
  background: var(--surface-3); border: 1px solid var(--border);
  border-radius: var(--r-sm); color: var(--text-subtle); font-size: 13px;
  cursor: pointer; transition: border-color var(--dur) var(--ease);
}
.topbar-search:hover { border-color: var(--border-strong); }
.topbar-search svg { width: 14px; height: 14px; }

/* Avatar */
.avatar {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 12px; font-weight: 650;
}

/* Mobile bottom tab bar — hidden on desktop */
.tabbar { display: none; }

/* Stat tiles. minmax(0,…) so a card can shrink below its content and never
   force horizontal overflow at narrow widths. */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(clamp(140px, 45%, 200px), 1fr)); gap: 12px; }
.stat { padding: 16px; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-value { font-size: 1.6rem; font-weight: 650; letter-spacing: -0.02em; margin-top: 6px; }
.stat-meta { font-size: 12px; color: var(--text-subtle); margin-top: 4px; }

/* Quick-launch tool cards */
.tool-card {
  display: flex; flex-direction: column; gap: 8px; padding: 16px;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.tool-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.tool-icon {
  width: 34px; height: 34px; border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--accent);
  background: var(--accent-soft);
}

/* ── Responsive: collapse to bottom tab bar under 768px ──────────────────── */
@media (max-width: 767px) {
  .shell { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .page { padding: 16px 14px 88px; }
  .topbar { padding: 0 14px; }
  .topbar-search { min-width: 0; flex: 1; }

  .tabbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    background: var(--surface); border-top: 1px solid var(--border);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    justify-content: space-around;
  }
  .tab-item {
    display: flex; flex-direction: column; align-items: center; gap: 3px;
    padding: 6px 10px; min-width: 56px; min-height: 44px; justify-content: center;
    border-radius: var(--r-sm); font-size: 10.5px; font-weight: 550;
    color: var(--text-subtle);
  }
  .tab-item svg { width: 20px; height: 20px; }
  .tab-item.active { color: var(--accent); }

  /* Modals become bottom sheets */
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .modal { max-width: 100%; border-radius: var(--r-lg) var(--r-lg) 0 0; box-shadow: var(--shadow-sheet); animation: sheet-in var(--dur) var(--ease); }
  @keyframes sheet-in { from { transform: translateY(100%); } to { transform: none; } }

  .cmdk-backdrop { padding: 8vh 12px 12px; }
  .page-head { flex-direction: column; }
}

/* Narrow phones: collapse every auto-fit card grid to a single column so no
   layout can ever push past the viewport edge. Covers stat tiles, quick-launch
   tool cards, the landing feature strip and pricing grid. */
@media (max-width: 439px) {
  .stat-grid,
  .card > [style*="grid-template-columns"],
  section [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

/* Tables → stacked cards under 768px */
@media (max-width: 767px) {
  .table.responsive thead { display: none; }
  .table.responsive tbody tr {
    display: block; padding: 12px 14px; border: 1px solid var(--border);
    border-radius: var(--r-md); margin-bottom: 10px; background: var(--surface);
  }
  .table.responsive tbody tr:hover { background: var(--surface); }
  .table.responsive tbody td {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 5px 0; border: 0; text-align: right;
  }
  .table.responsive tbody td::before {
    content: attr(data-label); color: var(--text-subtle);
    font-size: 12px; font-weight: 550; text-align: left;
  }
}

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

/* Utility bits used in markup */
.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.text-accent { color: var(--accent); }
.text-danger { color: var(--danger); }
.text-success { color: var(--success); }
.row { display: flex; align-items: center; gap: 10px; }
.between { justify-content: space-between; }
.stack { display: flex; flex-direction: column; }
.grow { flex: 1; min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hide-mobile { }
@media (max-width: 767px) { .hide-mobile { display: none !important; } }
.hide-desktop { display: none; }
@media (max-width: 767px) { .hide-desktop { display: initial; } }
