:root {
  --black: #080808;
  --soft-black: #111111;
  --panel: #171717;
  --panel-light: #202020;
  --gold: #d5aa45;
  --light-gold: #f1d58b;
  --cream: #f7f1e6;
  --muted: #aaa49a;
  --green: #274f3f;
  --border: rgba(213, 170, 69, 0.2);
  --danger: #c46d63;
  --sidebar-width: 270px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #0c0c0c;
  color: var(--cream);
  font-family: "Manrope", Arial, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(241, 213, 139, 0.45);
  outline-offset: 3px;
}

.demo-app {
  min-height: 100vh;
}

.demo-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 30;
  width: var(--sidebar-width);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0%, rgba(213, 170, 69, 0.12), transparent 28%),
    linear-gradient(180deg, #10100f, #080808 76%);
  border-right: 1px solid var(--border);
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.2);
}

.sidebar-brand {
  padding: 6px 8px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(145deg, var(--light-gold), #ad7924);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(213, 170, 69, 0.18);
}

.sidebar-brand strong,
.sidebar-brand span {
  display: block;
}

.sidebar-brand strong {
  color: #fff8e9;
  font-size: 0.9rem;
  line-height: 1.25;
}

.sidebar-brand span {
  margin-top: 3px;
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sidebar-nav {
  padding: 24px 0;
  display: grid;
  gap: 7px;
}

.nav-item {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9c3b8;
  background: transparent;
  text-align: left;
  font-weight: 700;
  transition: 180ms ease;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
}

.nav-item.active {
  color: var(--light-gold);
  background: rgba(213, 170, 69, 0.11);
  border-color: rgba(213, 170, 69, 0.25);
  box-shadow: inset 3px 0 0 var(--gold);
}

.nav-icon {
  width: 24px;
  display: inline-grid;
  place-items: center;
  color: var(--gold);
  font-size: 1rem;
}

.sidebar-bottom {
  margin-top: auto;
  display: grid;
  gap: 14px;
}

.sample-mode-card {
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(213, 170, 69, 0.06);
}

.sample-mode-card span {
  color: var(--light-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sample-mode-card p {
  margin: 7px 0 0;
  color: #aaa49a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.back-to-hov {
  color: #cfc7b8;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.back-to-hov:hover {
  color: var(--light-gold);
}

.demo-main {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  background:
    radial-gradient(circle at 90% 0%, rgba(213, 170, 69, 0.08), transparent 24%),
    #0d0d0d;
}

.demo-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 88px;
  padding: 16px clamp(20px, 3vw, 42px);
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(13, 13, 13, 0.93);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.mobile-menu-button {
  display: none;
}

.topbar-title {
  min-width: 180px;
}

.topbar-title p,
.topbar-title h1 {
  margin: 0;
}

.topbar-title p {
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar-title h1 {
  margin-top: 3px;
  color: #fffaf0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.topbar-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tour-button,
.reset-button,
.primary-action,
.secondary-action,
.text-button,
.quick-action-grid button,
.disabled-live-action {
  border-radius: 10px;
  font-weight: 800;
  transition: 180ms ease;
}

.tour-button,
.primary-action {
  min-height: 43px;
  padding: 0 18px;
  border: 1px solid rgba(241, 213, 139, 0.7);
  color: #171006;
  background: linear-gradient(135deg, #f1d58b, #c9912d);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.35),
    0 12px 24px rgba(213, 170, 69, 0.14);
}

.tour-button:hover,
.primary-action:hover {
  transform: translateY(-2px);
}

.reset-button,
.secondary-action {
  min-height: 43px;
  padding: 0 16px;
  border: 1px solid rgba(213, 170, 69, 0.32);
  color: var(--light-gold);
  background: rgba(213, 170, 69, 0.06);
}

.reset-button:hover,
.secondary-action:hover {
  background: rgba(213, 170, 69, 0.13);
}

.demo-user {
  padding-left: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.demo-user span {
  color: #bdb6aa;
  font-size: 0.78rem;
  font-weight: 700;
}

.demo-user strong {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--black);
  background: var(--gold);
  font-size: 0.76rem;
}

.demo-notice {
  margin: 20px clamp(20px, 3vw, 42px) 0;
  padding: 13px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(213, 170, 69, 0.24);
  border-radius: 12px;
  background: rgba(213, 170, 69, 0.07);
}

.demo-notice strong {
  color: var(--light-gold);
  font-size: 0.78rem;
}

.demo-notice span {
  color: #b9b2a6;
  font-size: 0.78rem;
}

.dashboard-content {
  padding: 28px clamp(20px, 3vw, 42px) 54px;
}

.dashboard-view {
  display: none;
}

.dashboard-view.active {
  display: block;
  animation: viewFade 220ms ease;
}

@keyframes viewFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.welcome-row,
.view-heading {
  margin-bottom: 26px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.welcome-row > div,
.view-heading > div {
  max-width: 760px;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.welcome-row h2,
.view-heading h2 {
  margin: 0;
  color: #fffaf0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.06;
}

.welcome-row p:not(.section-kicker),
.view-heading p:not(.section-kicker) {
  margin: 12px 0 0;
  color: #a9a297;
  line-height: 1.65;
}

.metric-grid {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.metric-card {
  min-height: 142px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #151515;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.metric-card.featured {
  border-color: rgba(213, 170, 69, 0.38);
  background:
    radial-gradient(circle at top right, rgba(213, 170, 69, 0.18), transparent 44%),
    linear-gradient(145deg, #21180d, #15120e);
}

.metric-card span,
.metric-card strong,
.metric-card small {
  display: block;
}

.metric-card span {
  color: #a9a297;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.metric-card strong {
  margin-top: 12px;
  color: #fffaf0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1;
}

.metric-card small {
  margin-top: 10px;
  color: #79746c;
  font-size: 0.72rem;
  line-height: 1.4;
}

.metric-card.featured strong {
  color: var(--light-gold);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.8fr);
  gap: 20px;
}

.dashboard-grid.lower-grid {
  margin-top: 20px;
  grid-template-columns: 1fr 1fr;
}

.dashboard-panel {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 17px;
  background: #151515;
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.panel-heading {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.panel-heading h3,
.placeholder-panel h3 {
  margin: 0;
  color: #fffaf0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.2rem;
}

.panel-heading select {
  min-height: 38px;
  padding: 0 10px;
  color: #d7d0c3;
  background: #202020;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.text-button {
  padding: 7px 0;
  border: 0;
  color: var(--gold);
  background: transparent;
}

.event-list {
  display: grid;
}

.event-row {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 54px minmax(170px, 1fr) minmax(130px, 0.65fr) auto;
  align-items: center;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.event-row:first-child {
  border-top: 0;
  padding-top: 3px;
}

.event-date {
  width: 52px;
  height: 58px;
  border: 1px solid rgba(213, 170, 69, 0.25);
  border-radius: 10px;
  display: grid;
  place-items: center;
  align-content: center;
  background: rgba(213, 170, 69, 0.07);
}

.event-date strong {
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
}

.event-date span {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 900;
}

.event-details h4 {
  margin: 0;
  color: #f3eee5;
  font-size: 0.9rem;
}

.event-details p {
  margin: 5px 0 0;
  color: #837d73;
  font-size: 0.72rem;
}

.event-progress > span {
  color: #b7b0a4;
  font-size: 0.72rem;
  font-weight: 700;
}

.progress-track {
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #272727;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #a87425, var(--light-gold));
}

.status-badge {
  padding: 7px 9px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.status-badge.upcoming {
  color: #b4ddc6;
  background: rgba(56, 126, 91, 0.18);
}

.status-badge.featured {
  color: var(--light-gold);
  background: rgba(213, 170, 69, 0.13);
}

.revenue-chart {
  min-height: 240px;
  padding: 18px 8px 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    repeating-linear-gradient(
      to top,
      rgba(255, 255, 255, 0.04) 0,
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px,
      transparent 56px
    );
}

.chart-column {
  height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 9px;
}

.chart-bar {
  width: min(34px, 76%);
  min-height: 8px;
  border-radius: 7px 7px 2px 2px;
  background: #4d4943;
}

.chart-bar.highlighted {
  background: linear-gradient(180deg, var(--light-gold), #9f6b20);
  box-shadow: 0 0 20px rgba(213, 170, 69, 0.18);
}

.chart-column span {
  color: #777168;
  font-size: 0.58rem;
  font-weight: 800;
}

.revenue-summary {
  padding-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.revenue-summary div {
  padding: 13px;
  border-radius: 10px;
  background: #1d1d1d;
}

.revenue-summary span,
.revenue-summary strong {
  display: block;
}

.revenue-summary span {
  color: #8e887f;
  font-size: 0.66rem;
}

.revenue-summary strong {
  margin-top: 5px;
  color: #f3eee4;
}

.activity-list {
  display: grid;
}

.activity-list article {
  padding: 15px 0;
  display: flex;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.activity-list article:first-child {
  border-top: 0;
}

.activity-dot {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(213, 170, 69, 0.1);
}

.activity-list strong {
  color: #eee8de;
  font-size: 0.82rem;
}

.activity-list p {
  margin: 5px 0 0;
  color: #817b72;
  font-size: 0.69rem;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.quick-action-grid button {
  min-height: 80px;
  padding: 13px;
  border: 1px solid rgba(213, 170, 69, 0.18);
  color: #ddd6ca;
  background: rgba(213, 170, 69, 0.055);
}

.quick-action-grid button:hover {
  color: var(--light-gold);
  background: rgba(213, 170, 69, 0.11);
}

.table-toolbar {
  margin-bottom: 17px;
  display: flex;
  gap: 10px;
}

.table-toolbar input,
.table-toolbar select,
.settings-grid select,
.modal-card input {
  min-height: 43px;
  padding: 0 13px;
  color: #eee9df;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: #202020;
}

.table-toolbar input {
  min-width: 260px;
  flex: 1;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  text-align: left;
  white-space: nowrap;
}

th {
  color: #847e75;
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

td {
  color: #d5cec2;
  font-size: 0.78rem;
}

.table-action {
  border: 0;
  color: var(--gold);
  background: transparent;
  font-weight: 800;
}

.placeholder-panel {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.placeholder-panel p {
  max-width: 620px;
  color: #8e887e;
  line-height: 1.7;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.settings-grid label {
  display: grid;
  gap: 8px;
  color: #bcb5a9;
  font-size: 0.75rem;
  font-weight: 800;
}

.disabled-live-action {
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #746f67;
  background: #1e1e1e;
  cursor: not-allowed;
}

.disabled-note {
  margin: 0;
  align-self: center;
  color: #777168;
  font-size: 0.74rem;
}

.demo-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.demo-modal.is-open {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border: 1px solid rgba(213, 170, 69, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(213, 170, 69, 0.12), transparent 35%),
    #151515;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.55);
}

.welcome-modal-card {
  width: min(650px, 100%);
  text-align: center;
}

.modal-card h2 {
  margin: 0;
  color: #fff8eb;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
}

.modal-card > p:not(.section-kicker) {
  color: #a8a196;
  line-height: 1.7;
}

.modal-card small {
  display: block;
  margin-top: 22px;
  color: #736e67;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 13px;
  right: 15px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #ddd5c7;
  background: rgba(255, 255, 255, 0.055);
  font-size: 1.4rem;
}

.welcome-options {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-card form {
  margin-top: 22px;
  display: grid;
  gap: 17px;
}

.modal-card label {
  display: grid;
  gap: 8px;
  color: #bdb6aa;
  font-size: 0.76rem;
  font-weight: 800;
}

.tour-overlay {
  position: fixed;
  z-index: 120;
  width: min(420px, calc(100vw - 48px));
  display: none;
}

.tour-overlay.is-open {
  display: block;
}

.tour-card {
  padding: 24px;
  border: 1px solid rgba(213, 170, 69, 0.45);
  border-radius: 18px;
  background: #171511;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52);
}

.tour-card > span {
  color: #777168;
  font-size: 0.7rem;
  font-weight: 800;
}

.tour-card h2 {
  margin: 9px 0 0;
  color: #fff8e9;
  font-family: "Cinzel", Georgia, serif;
}

.tour-card > p:not(.section-kicker) {
  color: #a7a095;
  line-height: 1.6;
}

.tour-actions {
  margin-top: 20px;
  display: flex;
  gap: 9px;
}

.tour-actions button {
  flex: 1;
}

.tour-highlight {
  position: relative;
  z-index: 115;
  border-radius: 16px;
  box-shadow:
    0 0 0 4px rgba(213, 170, 69, 0.75),
    0 0 0 9999px rgba(0, 0, 0, 0.68);
}

.toast {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 150;
  max-width: 360px;
  padding: 14px 18px;
  border: 1px solid rgba(213, 170, 69, 0.35);
  border-radius: 11px;
  color: #f6efe3;
  background: #201a11;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1150px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 850px) {
  :root {
    --sidebar-width: 250px;
  }

  .demo-sidebar {
    transform: translateX(-105%);
    transition: transform 220ms ease;
  }

  .demo-sidebar.is-open {
    transform: translateX(0);
  }

  .demo-main {
    margin-left: 0;
  }

  .mobile-menu-button {
    min-height: 40px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(213, 170, 69, 0.28);
    border-radius: 9px;
    color: var(--light-gold);
    background: rgba(213, 170, 69, 0.07);
    font-weight: 800;
  }

  .topbar-actions {
    gap: 7px;
  }

  .demo-user span {
    display: none;
  }
}

@media (max-width: 680px) {
  .demo-topbar {
    min-height: auto;
    padding: 14px 16px;
    flex-wrap: wrap;
  }

  .topbar-title {
    flex: 1;
  }

  .topbar-actions {
    width: 100%;
    margin-left: 0;
  }

  .tour-button,
  .reset-button {
    flex: 1;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .demo-user {
    padding-left: 0;
  }

  .demo-notice {
    margin: 14px 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .dashboard-content {
    padding: 22px 16px 42px;
  }

  .welcome-row,
  .view-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .welcome-row .primary-action,
  .view-heading .primary-action {
    width: 100%;
  }

  .metric-grid,
  .metric-grid.compact,
  .dashboard-grid.lower-grid {
    grid-template-columns: 1fr;
  }

  .event-row {
    grid-template-columns: 54px 1fr;
  }

  .event-progress,
  .event-row .status-badge {
    grid-column: 2;
  }

  .quick-action-grid,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .table-toolbar {
    flex-direction: column;
  }

  .table-toolbar input {
    min-width: 0;
    width: 100%;
  }

  .welcome-options,
  .tour-actions {
    flex-direction: column;
  }

  .welcome-options button,
  .tour-actions button {
    width: 100%;
  }

  .tour-overlay {
    inset: auto 12px 12px;
    width: auto;
  }
}

/* Mobile dashboard experience notice */
.mobile-dashboard-gate {
  display: none;
}

@media (max-width: 767px) {
  body.mobile-demo-locked {
    overflow: hidden;
  }

  .mobile-dashboard-gate {
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    background:
      radial-gradient(circle at 50% 10%, rgba(213, 170, 69, 0.16), transparent 35%),
      linear-gradient(180deg, #11100d, #080808);
  }

  .mobile-dashboard-gate.is-dismissed {
    display: none;
  }

  .mobile-dashboard-gate-card {
    width: min(100%, 480px);
    padding: 34px 24px;
    border: 1px solid rgba(213, 170, 69, 0.38);
    border-radius: 24px;
    background:
      radial-gradient(circle at top right, rgba(213, 170, 69, 0.13), transparent 38%),
      #151411;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
    text-align: center;
  }

  .mobile-gate-mark {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #171006;
    background: linear-gradient(145deg, #f1d58b, #bd8328);
    font-family: "Cinzel", Georgia, serif;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(213, 170, 69, 0.2);
  }

  .mobile-dashboard-gate-card h1 {
    margin: 0;
    color: #fff8e9;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.08;
  }

  .mobile-dashboard-gate-card > p:not(.section-kicker) {
    margin: 18px 0 0;
    color: #aaa297;
    line-height: 1.7;
  }

  .mobile-gate-actions {
    margin-top: 28px;
    display: grid;
    gap: 12px;
  }

  .mobile-gate-primary {
    min-height: 50px;
    width: 100%;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
  }

  .mobile-gate-primary {
    border: 1px solid rgba(241, 213, 139, 0.7);
    color: #171006;
    background: linear-gradient(135deg, #f1d58b, #c9912d);
  }

  .mobile-dashboard-gate-card small {
    display: block;
    margin-top: 20px;
    color: #746e65;
    line-height: 1.5;
  }
}

/* Force dashboard to remain desktop/tablet only on phones */
@media (max-width: 767px) {
  .mobile-dashboard-gate,
  .mobile-dashboard-gate.is-dismissed {
    display: flex !important;
  }

  .demo-app,
  #welcomeModal,
  #actionModal,
  #tourOverlay,
  #demoToast {
    display: none !important;
  }
}
