/* =====================================================================
   GTRAY DASH - app-style landing: dark rail with tabs + light content.
   Scoped to body.dash-route so /profile and /login keep their styles.
   ===================================================================== */

body.dash-route {
  --dash-page: #bed6e2;
  --dash-shell: #2c2c2c;
  --dash-shell-soft: #3a3a3a;
  --dash-panel: #fdfcfa;
  --dash-ink: #1e1e1e;
  --dash-muted: #8b8b8b;
  --dash-line: #ececea;
  --dash-yellow: #f9d64f;
  --dash-violet: #d0b5f6;
  --dash-blue: #b4daf6;
  --dash-orange: #f9553c;
  --dash-radius: 34px;
  --dash-radius-md: 22px;
  --dash-radius-sm: 14px;

  margin: 0;
  padding: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--dash-page);
  color: var(--dash-ink);
  font-family: var(--font-main, 'Unbounded', sans-serif);
  /* Unbounded is a wide face, so the base size and tracking come down a notch */
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

body.dash-route h1,
body.dash-route h2,
body.dash-route h3,
body.dash-route h4 {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--dash-ink);
  margin: 0;
}

body.dash-route button {
  font-family: inherit;
  cursor: pointer;
}

body.dash-route a {
  color: inherit;
  text-decoration: none;
}

/* ===================== shell ===================== */
body.dash-route .dash-shell {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 12px;
  background: var(--dash-shell);
  border-radius: 0;
  overflow: hidden;
}

/* ---- left rail ---- */
body.dash-route .dash-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  min-height: 0;
  overflow: visible;
}

body.dash-route .dash-rail__logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
}

body.dash-route .dash-rail__logo img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}

body.dash-route .dash-tab {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: var(--dash-radius-sm);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

body.dash-route .dash-tab svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.dash-route .dash-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

body.dash-route .dash-tab.is-active {
  background: var(--dash-yellow);
  color: #1e1e1e;
}

body.dash-route .dash-tab__tip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  padding: 6px 12px;
  border-radius: 999px;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 40;
}

body.dash-route .dash-tab:hover .dash-tab__tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

body.dash-route .dash-rail__spacer {
  flex: 1 1 auto;
}

/* ---- content panel ---- */
body.dash-route .dash-main {
  min-width: 0;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 30, 30, 0.2) transparent;
  padding: clamp(18px, 2.2vw, 30px) clamp(18px, 2.4vw, 34px) clamp(22px, 2.6vw, 34px);
  background: var(--dash-panel);
  border-radius: var(--dash-radius-md);
}

body.dash-route .dash-main::-webkit-scrollbar {
  width: 8px;
}

body.dash-route .dash-main::-webkit-scrollbar-track {
  background: transparent;
}

body.dash-route .dash-main::-webkit-scrollbar-thumb {
  background: rgba(30, 30, 30, 0.18);
  border-radius: 999px;
}

body.dash-route .dash-main::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 30, 30, 0.3);
}

/* the mobile tab strip scrolls sideways, no bar needed there */
body.dash-route .dash-rail {
  scrollbar-width: none;
}

body.dash-route .dash-rail::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* ===================== topbar ===================== */
body.dash-route .dash-top {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

body.dash-route .dash-welcome {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  color: var(--dash-muted);
  white-space: nowrap;
}

body.dash-route .dash-welcome strong {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--dash-ink);
}

body.dash-route .dash-welcome strong span {
  color: var(--dash-orange);
}

body.dash-route .dash-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 320px;
  margin-left: auto;
}

body.dash-route .dash-search input {
  width: 100%;
  padding: 11px 52px 11px 18px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #fff;
  font-family: inherit;
  font-size: 13px;
  color: var(--dash-ink);
  box-sizing: border-box;
}

body.dash-route .dash-search input::placeholder {
  color: #b4b4b4;
}

body.dash-route .dash-search input:focus {
  outline: none;
  border-color: #d8d8d4;
}

body.dash-route .dash-search button {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 50%;
  background: var(--dash-orange);
  color: #fff;
}

body.dash-route .dash-search button svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

body.dash-route .dash-bell {
  position: relative;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--dash-line);
  border-radius: 50%;
  background: #fff;
  color: var(--dash-ink);
  flex: 0 0 auto;
}

body.dash-route .dash-bell svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.7;
  fill: none;
}

body.dash-route .dash-bell::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dash-orange);
  border: 2px solid #fff;
}

body.dash-route .dash-user {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

body.dash-route .dash-user__avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dash-violet), var(--dash-blue));
  color: #2c2c2c;
  font-weight: 700;
  font-size: 14px;
  overflow: hidden;
}

body.dash-route .dash-user__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.dash-route .dash-user__meta {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

body.dash-route .dash-user__name {
  font-size: 13px;
  font-weight: 600;
}

body.dash-route .dash-user__handle {
  font-size: 11px;
  color: var(--dash-muted);
}

body.dash-route .dash-auth {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.dash-route .dash-auth button,
body.dash-route .dash-btn-sm {
  padding: 9px 16px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #fff;
  color: var(--dash-ink);
  font-size: 12px;
  font-weight: 600;
}

body.dash-route .dash-auth .btn-signup {
  background: var(--dash-ink);
  border-color: var(--dash-ink);
  color: #fff;
}

body.dash-route .lang-switch {
  display: inline-flex;
  gap: 4px;
}

body.dash-route .lang-switch button {
  padding: 7px 11px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #fff;
  color: var(--dash-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body.dash-route .lang-switch button.active {
  background: var(--dash-ink);
  border-color: var(--dash-ink);
  color: #fff;
}

/* ===================== section head ===================== */
body.dash-route .dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

body.dash-route .dash-title {
  font-size: clamp(22px, 2.6vw, 30px);
}

body.dash-route .dash-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

body.dash-route .dash-pill {
  padding: 9px 18px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #fff;
  color: var(--dash-ink);
  font-size: 12.5px;
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

body.dash-route .dash-pill:hover {
  border-color: #cfcfcb;
}

body.dash-route .dash-pill.is-active {
  background: var(--dash-ink);
  border-color: var(--dash-ink);
  color: #fff;
}

/* ===================== offer cards ===================== */
body.dash-route .dash-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

body.dash-route .dash-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  border: 1.5px solid rgba(30, 30, 30, 0.14);
  border-radius: var(--dash-radius-md);
  background: var(--card-bg, var(--dash-yellow));
  color: #1e1e1e;
  box-shadow: 0 10px 24px rgba(30, 30, 30, 0.08);
}

body.dash-route .dash-card--a { --card-bg: var(--dash-yellow); --card-tag-bg: #1e1e1e; --card-tag-ink: #fff; }
body.dash-route .dash-card--b { --card-bg: var(--dash-violet); --card-tag-bg: var(--dash-yellow); --card-tag-ink: #1e1e1e; }
body.dash-route .dash-card--c { --card-bg: var(--dash-blue); --card-tag-bg: var(--dash-violet); --card-tag-ink: #1e1e1e; }

body.dash-route .dash-card__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--card-tag-bg);
  color: var(--card-tag-ink);
  font-size: 11.5px;
  font-weight: 600;
}

body.dash-route .dash-card__save {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: #1e1e1e;
}

body.dash-route .dash-card__save svg {
  width: 16px;
  height: 20px;
  fill: currentColor;
}

body.dash-route .dash-card__title {
  margin: 14px 0 auto;
  padding-right: 26px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.25;
}

body.dash-route .dash-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
}

body.dash-route .dash-card__meta span:first-child {
  color: rgba(30, 30, 30, 0.6);
}

body.dash-route .dash-card__meta span:last-child {
  font-weight: 600;
}

body.dash-route .dash-bar {
  height: 7px;
  margin: 8px 0 16px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.16);
  overflow: hidden;
}

body.dash-route .dash-bar i {
  display: block;
  height: 100%;
  width: var(--bar, 40%);
  border-radius: 999px;
  background: #1e1e1e;
}

body.dash-route .dash-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* avatar stack */
body.dash-route .dash-stack {
  display: flex;
  align-items: center;
}

body.dash-route .dash-stack span {
  width: 30px;
  height: 30px;
  margin-right: -9px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #2c2c2c;
  box-sizing: border-box;
}

body.dash-route .dash-stack span:nth-child(1) { background: #ffcf5c; }
body.dash-route .dash-stack span:nth-child(2) { background: #9fd8f6; }
body.dash-route .dash-stack span:nth-child(3) { background: #f6a8d8; }

body.dash-route .dash-stack span:last-child {
  margin-right: 0;
  padding: 0 4px;
  width: auto;
  min-width: 34px;
  background: #fff;
  font-size: 10.5px;
}

body.dash-route .dash-cta {
  padding: 10px 22px;
  border: none;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dash-route .dash-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(249, 85, 60, 0.3);
}

/* ===================== quick stats ===================== */
body.dash-route .dash-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 14px);
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

body.dash-route .dash-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  border: 1px solid var(--dash-line);
  border-left-width: 4px;
  border-radius: var(--dash-radius-sm);
  background: #fff;
}

body.dash-route .dash-stat:nth-child(1) { border-left-color: var(--dash-yellow); }
body.dash-route .dash-stat:nth-child(2) { border-left-color: var(--dash-violet); }
body.dash-route .dash-stat:nth-child(3) { border-left-color: var(--dash-blue); }
body.dash-route .dash-stat:nth-child(4) { border-left-color: var(--dash-orange); }

body.dash-route .dash-stat__val {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.dash-route .dash-stat__key {
  font-size: 11px;
  line-height: 1.35;
  color: var(--dash-muted);
}

/* ===================== price calculator ===================== */
body.dash-route .dash-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
  margin-bottom: clamp(14px, 1.8vw, 20px);
}

body.dash-route .dash-calc__form {
  padding: 20px 22px 24px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
}

body.dash-route .dash-calc__hint {
  font-size: 11.5px;
  color: var(--dash-muted);
}

body.dash-route .dash-field + .dash-field {
  margin-top: 18px;
}

body.dash-route .dash-field__label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dash-muted);
}

body.dash-route .dash-field__label b {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: 13px;
  color: var(--dash-ink);
}

body.dash-route .dash-seg {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

body.dash-route .dash-seg__btn {
  padding: 8px 15px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #f7f6f3;
  color: var(--dash-ink);
  font-size: 12px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

body.dash-route .dash-seg__btn.is-active {
  border-color: var(--dash-shell);
  background: var(--dash-shell);
  color: #fff;
}

/* the filled part of the track is driven by --fill from the script */
body.dash-route .dash-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    var(--dash-orange) var(--fill, 0%),
    var(--dash-line) var(--fill, 0%)
  );
  cursor: pointer;
}

body.dash-route .dash-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 3px solid var(--dash-orange);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

body.dash-route .dash-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border: 3px solid var(--dash-orange);
  border-radius: 50%;
  background: #fff;
}

body.dash-route .dash-range__scale {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  font-size: 10.5px;
  color: var(--dash-muted);
}

body.dash-route .dash-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body.dash-route .dash-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border: 1px solid var(--dash-line);
  border-radius: 999px;
  background: #f7f6f3;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

body.dash-route .dash-chip input {
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

body.dash-route .dash-chip__name {
  max-width: 28ch;
}

body.dash-route .dash-chip__price {
  font-style: normal;
  font-size: 11px;
  color: var(--dash-muted);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  white-space: nowrap;
}

body.dash-route .dash-chip__price s {
  color: #a8a8a8;
  text-decoration: line-through;
  font-weight: 500;
}

body.dash-route .dash-chip__price b {
  font-weight: 800;
  color: var(--dash-orange);
  font-size: 12px;
}

body.dash-route .dash-chip__badge {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.dash-route .dash-care-months {
  margin-top: 14px;
  padding-top: 4px;
}

body.dash-route .dash-field__hint {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--dash-muted);
}

body.dash-route .dash-field__hint[hidden],
body.dash-route .dash-range__scale[hidden],
body.dash-route .dash-field[hidden],
body.dash-route .dash-care-months[hidden],
body.dash-route .dash-calc__time[hidden],
#calcScopeLabel[hidden],
#calcScopeLabelBot[hidden] {
  display: none;
}

body.dash-route .dash-calc__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

body.dash-route .dash-chip.is-on {
  border-color: var(--dash-orange);
  background: #fff1ee;
}

body.dash-route .dash-chip.is-on .dash-chip__price {
  color: var(--dash-orange);
}

body.dash-route .dash-calc__result {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 22px;
  border-radius: var(--dash-radius-md);
  background: var(--dash-shell);
  color: #fff;
}

body.dash-route .dash-calc__kicker {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.dash-route .dash-calc__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
  font-family: var(--font-display, 'Unbounded', sans-serif);
}

body.dash-route .dash-calc__price span {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.55);
}

body.dash-route .dash-calc__price strong {
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.05em;
}

body.dash-route .dash-calc__time {
  margin: 2px 0 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

body.dash-route .dash-calc__time b {
  color: var(--dash-yellow);
}

body.dash-route .dash-calc__list {
  display: grid;
  gap: 7px;
  margin: 0 0 auto;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  list-style: none;
  font-size: 11.5px;
}

body.dash-route .dash-calc__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.66);
}

body.dash-route .dash-calc__list li b {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

body.dash-route .dash-calc__btn {
  margin-top: 18px;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.dash-route .dash-calc__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(249, 85, 60, 0.32);
}

body.dash-route .dash-calc__note {
  margin-top: 10px;
  font-size: 10px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.4);
}

/* ===================== price list ===================== */
body.dash-route .dash-prices,
body.dash-route .dash-faq {
  margin-bottom: clamp(14px, 1.8vw, 20px);
  padding-bottom: 20px;
}

body.dash-route .dash-faq {
  margin-top: clamp(18px, 2.4vw, 28px);
}

body.dash-route .dash-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.dash-route .dash-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px 16px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-sm);
  background: var(--dash-panel);
}

body.dash-route .dash-price__name {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.dash-route .dash-price__sub {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--dash-muted);
}

body.dash-route .dash-price__val {
  margin-top: auto;
  padding-top: 8px;
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--dash-orange);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}

body.dash-route .dash-price__val s {
  font-size: 13px;
  font-weight: 600;
  color: #a8a8a8;
  text-decoration: line-through;
}

body.dash-route .dash-price__val b {
  font-weight: 800;
  color: var(--dash-orange);
}

body.dash-route .dash-price__badge {
  display: inline-flex;
  align-items: center;
  order: 3;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-family: var(--font-main, 'Unbounded', sans-serif);
  font-size: 11px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.02em;
  line-height: 1;
}

body.dash-route .dash-price__btn {
  margin-top: 8px;
  padding: 8px 14px;
  border: 1px solid var(--dash-shell);
  border-radius: 999px;
  background: transparent;
  color: var(--dash-ink);
  font-size: 11.5px;
  font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}

body.dash-route .dash-price__btn:hover {
  background: var(--dash-shell);
  color: #fff;
}

/* ===================== faq ===================== */
body.dash-route .dash-faq__item {
  border-top: 1px solid var(--dash-line);
}

body.dash-route .dash-faq__item:first-of-type {
  border-top: none;
}

body.dash-route .dash-faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

body.dash-route .dash-faq__item summary::-webkit-details-marker {
  display: none;
}

body.dash-route .dash-faq__item summary::after {
  content: '+';
  font-size: 17px;
  font-weight: 500;
  color: var(--dash-muted);
}

body.dash-route .dash-faq__item[open] summary::after {
  content: '–';
}

body.dash-route .dash-faq__item p {
  margin: 0 0 14px;
  max-width: 82ch;
  font-size: 12px;
  line-height: 1.65;
  color: var(--dash-muted);
}

/* ===================== bottom row ===================== */
body.dash-route .dash-row {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(0, 1fr);
  gap: clamp(12px, 1.4vw, 18px);
  align-items: stretch;
}

body.dash-route .dash-block {
  padding: 20px 22px 8px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
}

body.dash-route .dash-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

body.dash-route .dash-block__head h3 {
  font-size: clamp(17px, 1.7vw, 21px);
}

body.dash-route .dash-link {
  color: var(--dash-orange);
  font-size: 12.5px;
  font-weight: 600;
}

body.dash-route .dash-link:hover {
  text-decoration: underline;
}

/* steps table */
body.dash-route .dash-table {
  width: 100%;
  border-collapse: collapse;
}

body.dash-route .dash-table th {
  padding: 0 0 10px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--dash-muted);
  text-align: left;
}

body.dash-route .dash-table th:last-child,
body.dash-route .dash-table td:last-child {
  text-align: right;
}

body.dash-route .dash-table td {
  padding: 13px 0;
  border-top: 1px solid var(--dash-line);
  font-size: 13.5px;
  vertical-align: middle;
}

body.dash-route .dash-table tr:first-child td {
  border-top: 1px solid var(--dash-line);
}

body.dash-route .dash-step__name {
  font-weight: 500;
  color: var(--dash-ink);
}

body.dash-route .dash-step__sub {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--dash-muted);
}

body.dash-route .dash-person {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
}

body.dash-route .dash-person i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  color: #2c2c2c;
}

body.dash-route .dash-person--a i { background: #ffcf5c; }
body.dash-route .dash-person--b i { background: #9fd8f6; }
body.dash-route .dash-person--c i { background: #f6a8d8; }
body.dash-route .dash-person--d i { background: #c3b4f6; }
body.dash-route .dash-person--e i { background: #a7e8c4; }

body.dash-route .dash-duration {
  font-size: 13px;
  color: var(--dash-ink);
  white-space: nowrap;
}

/* ===================== process timeline ===================== */
body.dash-route .dash-process__lead {
  margin: -4px 0 16px;
  max-width: 62ch;
  font-size: 14px;
  line-height: 1.55;
  color: var(--dash-muted);
}

body.dash-route .dash-process {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.9fr);
  gap: clamp(12px, 1.4vw, 18px);
  align-items: start;
}

body.dash-route .dash-process__timeline {
  display: grid;
  gap: 14px;
  position: relative;
  padding-left: 0;
}

body.dash-route .dash-process__timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--dash-yellow) 70%, transparent),
    rgba(30, 30, 30, 0.08) 40%,
    rgba(30, 30, 30, 0.06)
  );
  border-radius: 999px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

body.dash-route .dash-process-step {
  --step-shift: 28px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
  opacity: 0;
  transform: translateY(var(--step-shift)) scale(0.985);
  box-shadow: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

body.dash-route .dash-process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
  z-index: 2;
}

body.dash-route .dash-process-step.is-in {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-step.is-in::before {
  width: 5px;
}

body.dash-route .dash-process-step.is-hot {
  border-color: color-mix(in srgb, var(--accent) 65%, var(--dash-line));
  box-shadow:
    0 16px 34px rgba(30, 30, 30, 0.08),
    0 0 0 1px color-mix(in srgb, var(--accent) 35%, transparent);
  transform: translateY(-2px);
}

body.dash-route .dash-process-step.is-in.is-hot {
  transform: translateY(-2px);
}

body.dash-route .dash-process-step__visual {
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--accent) 45%, #fff) 0%, transparent 55%),
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 28%, #fff) 0%, #f7f6f3 70%);
  opacity: 0;
  transform: translateX(-12px) scale(0.96);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

body.dash-route .dash-process-step.is-in .dash-process-step__visual {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-art {
  width: 100%;
  max-width: 200px;
  height: auto;
}

body.dash-route .dash-process-art__pulse {
  transform-origin: center;
  animation: dashProcessPulse 2.2s ease-in-out infinite;
  animation-play-state: paused;
}

body.dash-route .dash-process-step.is-in .dash-process-art__pulse,
body.dash-route .dash-process-step.is-hot .dash-process-art__pulse {
  animation-play-state: running;
}

body.dash-route .dash-process-art__arc {
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: dashProcessDraw 2.4s ease forwards infinite;
  animation-play-state: paused;
}

body.dash-route .dash-process-step.is-in .dash-process-art__arc,
body.dash-route .dash-process-step.is-hot .dash-process-art__arc {
  animation-play-state: running;
}

body.dash-route .dash-process-art__bar {
  transform-origin: left center;
  animation: dashProcessGrow 2.6s ease-in-out infinite;
  animation-play-state: paused;
}

body.dash-route .dash-process-step.is-in .dash-process-art__bar,
body.dash-route .dash-process-step.is-hot .dash-process-art__bar {
  animation-play-state: running;
}

body.dash-route .dash-process-step__body {
  padding: 16px 18px 18px;
}

body.dash-route .dash-process-step__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.14s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.14s;
}

body.dash-route .dash-process-step.is-in .dash-process-step__meta {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-step__num {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 55%, #fff);
  color: #1e1e1e;
  font-size: 11px;
  font-weight: 700;
  transform: scale(0.85);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) 0.18s;
}

body.dash-route .dash-process-step.is-in .dash-process-step__num {
  transform: scale(1);
}

body.dash-route .dash-process-step__meta .dash-duration {
  margin-left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f2ef;
  font-size: 12px;
  font-weight: 600;
}

body.dash-route .dash-process-step__title {
  margin: 0 0 6px;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.25;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

body.dash-route .dash-process-step.is-in .dash-process-step__title {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-step__text {
  margin: 0 0 12px;
  max-width: 56ch;
  font-size: 13px;
  line-height: 1.55;
  color: var(--dash-muted);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.26s,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.26s;
}

body.dash-route .dash-process-step.is-in .dash-process-step__text {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-step__points {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.dash-route .dash-process-step__points li {
  position: relative;
  padding-left: 16px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--dash-ink);
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(0.32s + (var(--i, 0) * 70ms));
}

body.dash-route .dash-process-step.is-in .dash-process-step__points li {
  opacity: 1;
  transform: none;
}

body.dash-route .dash-process-step__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  transition-delay: calc(0.34s + (var(--i, 0) * 70ms));
}

body.dash-route .dash-process-step.is-in .dash-process-step__points li::before {
  transform: scale(1);
}

body.dash-route .dash-promo--process {
  position: sticky;
  top: 12px;
}

body.dash-route .dash-promo__list {
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

body.dash-route .dash-promo__list li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

body.dash-route .dash-promo__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dash-yellow);
}

@keyframes dashProcessPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.18); opacity: 1; }
}

@keyframes dashProcessDraw {
  0% { stroke-dashoffset: 80; opacity: 0.4; }
  45%, 70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -80; opacity: 0.4; }
}

@keyframes dashProcessGrow {
  0%, 100% { transform: scaleX(0.55); }
  50% { transform: scaleX(1); }
}

/* dark promo */
body.dash-route .dash-promo {
  display: flex;
  flex-direction: column;
  padding: 22px 24px 24px;
  border-radius: var(--dash-radius-md);
  background: var(--dash-shell);
  color: #fff;
}

body.dash-route .dash-promo__kicker {
  margin: 0 0 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
}

body.dash-route .dash-promo__tag {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--dash-yellow);
  color: #1e1e1e;
  font-size: 11.5px;
  font-weight: 600;
}

body.dash-route .dash-promo__title {
  margin: 14px 0 auto;
  color: #fff;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.3;
}

body.dash-route .dash-promo__sub {
  margin: 22px 0 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

body.dash-route .dash-promo .dash-stack span {
  border-color: var(--dash-shell);
}

body.dash-route .dash-promo .dash-stack span:last-child {
  background: var(--dash-yellow);
}

body.dash-route .dash-promo__btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  transition: filter 0.2s ease;
}

body.dash-route .dash-promo__btn:hover {
  filter: brightness(1.06);
}

/* ===================== panels ===================== */
body.dash-route .dash-panel {
  display: none;
}

body.dash-route .dash-panel.is-active {
  display: block;
  animation: dashFade 0.35s ease both;
}

@keyframes dashFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* services panel */
body.dash-route .dash-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

body.dash-route .dash-service {
  padding: 22px 24px 24px;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
}

body.dash-route .dash-service__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: var(--dash-radius-sm);
  background: var(--svc-bg, var(--dash-yellow));
  color: #1e1e1e;
}

body.dash-route .dash-service:nth-child(1) .dash-service__icon { --svc-bg: var(--dash-yellow); }
body.dash-route .dash-service:nth-child(2) .dash-service__icon { --svc-bg: var(--dash-violet); }
body.dash-route .dash-service:nth-child(3) .dash-service__icon { --svc-bg: var(--dash-blue); }
body.dash-route .dash-service:nth-child(4) .dash-service__icon { --svc-bg: #a7e8c4; }

body.dash-route .dash-service__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.dash-route .dash-service h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

body.dash-route .dash-service p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--dash-muted);
}

body.dash-route .dash-service ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.dash-route .dash-service li {
  position: relative;
  padding: 7px 0 7px 26px;
  font-size: 13px;
}

body.dash-route .dash-service li + li {
  border-top: 1px solid var(--dash-line);
}

body.dash-route .dash-service li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--dash-ink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.3l2.2 2.2 4.3-4.6' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* portfolio panel */
body.dash-route .portfolio-board {
  display: grid;
  gap: clamp(28px, 4vw, 42px);
  margin: 0;
  padding: 0;
}

body.dash-route .portfolio-cubes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
}

body.dash-route .portfolio-cube {
  position: relative;
  display: grid;
  grid-template-rows: 110px 1fr;
  min-height: 0;
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.dash-route .portfolio-cube:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(30, 30, 30, 0.1);
  border-color: rgba(30, 30, 30, 0.16);
}

body.dash-route .portfolio-cube__media {
  position: relative;
  overflow: hidden;
  background: #efeeeb;
}

body.dash-route .portfolio-cube--sites .portfolio-cube__media {
  background: linear-gradient(145deg, #fff4ef, #ffe3d8);
}

body.dash-route .portfolio-cube--telegram .portfolio-cube__media {
  background: linear-gradient(145deg, #e8f6fd, #cfeefc);
}

body.dash-route .portfolio-cube--discord .portfolio-cube__media {
  background: linear-gradient(145deg, #eceeff, #d8dbff);
}

body.dash-route .portfolio-cube__mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
  padding: 8px;
}

body.dash-route .portfolio-cube__mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  background: #ddd;
}

body.dash-route .portfolio-cube__mosaic img:first-child {
  grid-row: 1 / -1;
}

body.dash-route .portfolio-cube__glyph {
  position: absolute;
  inset: 22px auto auto 22px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(30, 30, 30, 0.08);
}

body.dash-route .portfolio-cube--telegram .portfolio-cube__glyph {
  background:
    radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, #2AABEE, #229ED9);
}

body.dash-route .portfolio-cube--discord .portfolio-cube__glyph {
  background:
    radial-gradient(circle at 32% 42%, #fff 0 10%, transparent 11%),
    radial-gradient(circle at 68% 42%, #fff 0 10%, transparent 11%),
    linear-gradient(135deg, #5865F2, #4752C4);
}

body.dash-route .portfolio-cube__body {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 12px 14px 14px;
}

body.dash-route .portfolio-cube__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body.dash-route .portfolio-cube__count {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.05);
  color: var(--dash-muted);
  font-size: 11px;
  font-weight: 600;
}

body.dash-route .portfolio-cube__arrow {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--dash-ink);
  color: #fff;
  font-size: 13px;
  transition: transform 0.22s ease, background 0.22s ease;
}

body.dash-route .portfolio-cube:hover .portfolio-cube__arrow {
  transform: translateX(2px);
  background: var(--dash-orange);
}

body.dash-route .portfolio-cube__title {
  margin: 2px 0 0;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--dash-ink);
}

body.dash-route .portfolio-cube__desc {
  margin: 0;
  color: var(--dash-muted);
  font-size: 12px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

body.dash-route .portfolio-cube__cta {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--dash-orange);
}

body.dash-route .portfolio-cat__head {
  display: grid;
  gap: 6px;
  margin: 0 0 14px;
}

body.dash-route .portfolio-cat__title {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--dash-ink);
}

body.dash-route .portfolio-cat__desc {
  margin: 0;
  max-width: 62ch;
  color: var(--dash-muted);
  font-size: 13.5px;
  line-height: 1.45;
}

body.dash-route .portfolio-page {
  padding: 8px 0 40px;
}

html.gtray-booting .portfolio-shell {
  opacity: 0;
  pointer-events: none;
}

body.dash-route .portfolio-shell {
  transition: opacity 0.28s ease;
}

body.dash-route .portfolio-shell.is-ready {
  opacity: 1;
  pointer-events: auto;
}

body.dash-route .portfolio-page__head {
  margin: 0 0 22px;
}

body.dash-route .portfolio-page__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 14px;
  color: var(--dash-muted);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
}

body.dash-route .portfolio-page__back:hover {
  color: var(--dash-ink);
}

body.dash-route .portfolio-page__count {
  margin: 0 0 8px;
  color: var(--dash-muted);
  font-size: 13px;
  font-weight: 600;
}

body.dash-route .portfolio-page__desc {
  margin: 10px 0 0;
  max-width: 70ch;
  color: var(--dash-muted);
  font-size: 13.5px;
}

body.dash-route .shots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  margin: 0;
  padding: 0;
  max-width: none;
  background: transparent;
}

body.dash-route .shots-grid--category {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
}

body.dash-route .shots-grid--bots {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  min-height: 88px;
}

body.dash-route .portfolio-empty {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 16px 18px;
  border: 1px dashed var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: rgba(30, 30, 30, 0.02);
  color: var(--dash-muted);
  font-size: 13.5px;
}

body.dash-route .portfolio-empty__mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dash-orange);
  opacity: 0.55;
  flex: 0 0 auto;
}

body.dash-route .portfolio-empty p {
  margin: 0;
}

@media (max-width: 980px) {
  body.dash-route .portfolio-cubes {
    grid-template-columns: 1fr;
    max-width: none;
  }

  body.dash-route .portfolio-cube {
    grid-template-rows: 100px 1fr;
  }
}

body.dash-route .shot-card {
  border: 1px solid var(--dash-line);
  border-radius: var(--dash-radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.dash-route .shot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(30, 30, 30, 0.12);
}

body.dash-route .shot-thumb {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f1ef;
}

body.dash-route .shot-card--cover .shot-thumb {
  aspect-ratio: 16 / 10;
}

body.dash-route .shot-card--cover {
  background: #111;
}

body.dash-route .shot-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.dash-route .shot-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(30, 30, 30, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.dash-route .shot-card:hover .shot-overlay {
  opacity: 1;
}

body.dash-route .overlay-btn.pink {
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: var(--dash-orange);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
}

body.dash-route .shot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 16px;
}

body.dash-route .shot-author,
body.dash-route .shot-meta .shot-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.dash-route .author-avatar-placeholder {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

body.dash-route .author-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #1a1a1a;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.dash-route .author-info {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

body.dash-route .author-name {
  font-size: 13.5px;
  font-weight: 600;
}

body.dash-route .shot-desc {
  font-size: 11.5px;
  color: var(--dash-muted);
}

body.dash-route .shot-stats .stat {
  padding: 6px 12px;
  border-radius: 999px;
  background: #f4f4f2;
  color: var(--dash-muted);
  font-size: 11px;
  font-weight: 600;
}

/* contact panel */
body.dash-route .dash-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 38%);
  gap: clamp(12px, 1.4vw, 18px);
  align-items: start;
}

body.dash-route .dash-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

body.dash-route .dash-contact__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--dash-line);
  font-size: 13.5px;
}

body.dash-route .dash-contact__list li span:first-child {
  color: var(--dash-muted);
  font-size: 12px;
}

body.dash-route .dash-note {
  padding: 20px 22px;
  border-radius: var(--dash-radius-md);
  background: var(--dash-yellow);
}

body.dash-route .dash-note h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

body.dash-route .dash-note p {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(30, 30, 30, 0.7);
}

/* ===================== footer strip ===================== */
body.dash-route .dash-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(16px, 2vw, 24px);
  padding-top: 16px;
  border-top: 1px solid var(--dash-line);
  font-size: 12px;
  color: var(--dash-muted);
}

body.dash-route .dash-foot nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

body.dash-route .dash-foot a:hover {
  color: var(--dash-ink);
}

/* ===================== legacy bits ===================== */
body.dash-route .gtray-site-loader {
  background: #2c2c2c;
}

body.dash-route footer,
body.dash-route .legacy-top-nav,
body.dash-route .lab-hero-wrap {
  display: none !important;
}

/* ===================== auth modal ===================== */
body.dash-route #authModal {
  z-index: 400;
  padding: 18px;
  background: rgba(22, 24, 28, 0.55);
  backdrop-filter: blur(8px);
}

body.dash-route #authModal .auth-modal {
  grid-template-columns: 0.9fr 1.1fr;
  max-width: 860px;
  min-height: 0;
  border-radius: 30px;
  background: var(--dash-panel);
  box-shadow: 0 40px 90px rgba(14, 20, 30, 0.45);
}

body.dash-route #authModal .auth-close {
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--dash-line);
  background: #fff;
  color: var(--dash-ink);
  font-size: 20px;
  box-shadow: none;
}

body.dash-route #authModal .auth-close:hover {
  background: var(--dash-yellow);
  border-color: var(--dash-yellow);
  color: var(--dash-ink);
  transform: none;
}

body.dash-route #authModal .auth-panel-left {
  padding: 28px 26px;
  background: var(--dash-shell);
  justify-content: space-between;
}

body.dash-route #authModal .auth-panel-left::before {
  background: radial-gradient(circle, rgba(249, 214, 79, 0.32) 0%, transparent 70%);
}

body.dash-route #authModal .auth-panel-left::after {
  background: radial-gradient(circle, rgba(208, 181, 246, 0.4) 0%, transparent 70%);
}

body.dash-route #authModal .auth-panel-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--dash-yellow);
  color: var(--dash-ink);
  font-size: 20px;
  font-weight: 500;
  opacity: 1;
}

body.dash-route #authModal .auth-panel-copy small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

body.dash-route #authModal .auth-panel-copy strong {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: clamp(21px, 2vw, 27px);
  letter-spacing: -0.01em;
  color: #fff;
}

/* ---- mascot: watches you type, turns away from a visible password ---- */
body.dash-route #authModal .auth-mascot {
  --look-x: 0;
  --look-y: 0;
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 1;
  width: clamp(132px, 15vw, 172px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

body.dash-route #authModal .auth-mascot svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  animation: mascotFloat 3.6s ease-in-out infinite alternate;
}

body.dash-route #authModal .auth-mascot__body,
body.dash-route #authModal .auth-mascot__eye,
body.dash-route #authModal .auth-mascot__hand,
body.dash-route #authModal .auth-mascot__brow,
body.dash-route #authModal .auth-mascot__sweat {
  transform-box: fill-box;
  transform-origin: center;
}

body.dash-route #authModal .auth-mascot__body {
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

body.dash-route #authModal .auth-mascot__shadow {
  fill: rgba(0, 0, 0, 0.3);
}

body.dash-route #authModal .auth-mascot__head {
  fill: var(--dash-panel);
}

body.dash-route #authModal .auth-mascot__tuft {
  fill: var(--dash-yellow);
}

body.dash-route #authModal .auth-mascot__white {
  fill: #fff;
}

body.dash-route #authModal .auth-mascot__eye {
  animation: mascotBlink 5.2s infinite;
}

body.dash-route #authModal .auth-mascot__pupil {
  fill: var(--dash-shell);
}

body.dash-route #authModal .auth-mascot__spark {
  fill: #fff;
}

body.dash-route #authModal .auth-mascot__pupil,
body.dash-route #authModal .auth-mascot__spark {
  transform: translate(calc(var(--look-x) * 5px), calc(var(--look-y) * 4px));
  transition: transform 0.22s ease;
}

body.dash-route #authModal .auth-mascot__brow {
  fill: none;
  stroke: var(--dash-shell);
  stroke-width: 4;
  stroke-linecap: round;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

body.dash-route #authModal .auth-mascot__face {
  transition: opacity 0.16s ease 0.06s;
}

/* the back of the head, shown once it turns around */
body.dash-route #authModal .auth-mascot__back {
  opacity: 0;
  transition: opacity 0.16s ease 0.16s;
}

body.dash-route #authModal .auth-mascot__ear {
  fill: var(--dash-panel);
}

body.dash-route #authModal .auth-mascot__hair {
  fill: none;
  stroke: rgba(44, 44, 44, 0.14);
  stroke-width: 3.6;
  stroke-linecap: round;
}

body.dash-route #authModal .auth-mascot__hair--nape {
  stroke: rgba(44, 44, 44, 0.09);
  stroke-width: 5;
}

body.dash-route #authModal .auth-mascot__blush {
  fill: var(--dash-orange);
  opacity: 0.4;
  transition: opacity 0.28s ease;
}

/* every mouth shape lives in the markup; states fade the right one in */
body.dash-route #authModal .auth-mascot__mouth {
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.dash-route #authModal .auth-mascot__mouth--smile,
body.dash-route #authModal .auth-mascot__mouth--line,
body.dash-route #authModal .auth-mascot__mouth--frown {
  fill: none;
  stroke: var(--dash-shell);
  stroke-width: 3.4;
  stroke-linecap: round;
}

body.dash-route #authModal .auth-mascot__mouth--grin,
body.dash-route #authModal .auth-mascot__mouth--oh {
  fill: var(--dash-shell);
}

body.dash-route #authModal .auth-mascot__mouth--smile {
  opacity: 1;
}

body.dash-route #authModal .auth-mascot__sweat {
  fill: var(--dash-blue);
  opacity: 0;
}

body.dash-route #authModal .auth-mascot__hand {
  fill: #e8e0d0;
  stroke: rgba(44, 44, 44, 0.1);
  stroke-width: 2;
  transition: transform 0.4s cubic-bezier(0.34, 1.3, 0.64, 1);
}

/* typing: brows up, open grin */
body.dash-route #authModal .auth-mascot.is-reading .auth-mascot__brow {
  transform: translateY(-3px);
}

body.dash-route #authModal .auth-mascot.is-reading .auth-mascot__mouth--smile {
  opacity: 0;
}

body.dash-route #authModal .auth-mascot.is-reading .auth-mascot__mouth--grin {
  opacity: 1;
}

/* masked password in use: politely looks away and whistles */
body.dash-route #authModal .auth-mascot.is-away .auth-mascot__body {
  transform: rotate(7deg);
}

body.dash-route #authModal .auth-mascot.is-away .auth-mascot__pupil,
body.dash-route #authModal .auth-mascot.is-away .auth-mascot__spark {
  transform: translate(-6px, -3px);
}

body.dash-route #authModal .auth-mascot.is-away .auth-mascot__brow--l {
  transform: translateY(-5px) rotate(-8deg);
}

body.dash-route #authModal .auth-mascot.is-away .auth-mascot__brow--r {
  transform: translateY(-2px);
}

body.dash-route #authModal .auth-mascot.is-away .auth-mascot__mouth--smile,
body.dash-route #authModal .auth-mascot.is-away .auth-mascot__mouth--grin {
  opacity: 0;
}

body.dash-route #authModal .auth-mascot.is-away .auth-mascot__mouth--line {
  opacity: 1;
}

/* password revealed: it turns its back on the screen */
body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__body {
  transform: rotate(-6deg);
  animation: mascotTurn 0.42s ease;
}

body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__face {
  opacity: 0;
}

body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__back {
  opacity: 1;
}

body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__eye {
  animation: none;
}

/* hands tuck behind the back */
body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__hand {
  fill: #ddd3c1;
}

body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__hand--l {
  transform: translate(15px, 5px) scale(0.9);
}

body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__hand--r {
  transform: translate(-15px, 5px) scale(0.9);
}

/* rejected login: worried brows, frown and a sweat drop */
body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__body {
  animation: mascotShake 0.6s ease;
}

body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__brow--l {
  transform: translateY(-4px) rotate(14deg);
}

body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__brow--r {
  transform: translateY(-4px) rotate(-14deg);
}

body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__mouth--smile,
body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__mouth--grin,
body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__mouth--line,
body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__mouth--oh {
  opacity: 0;
}

body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__mouth--frown {
  opacity: 1;
}

body.dash-route #authModal .auth-mascot.is-oops .auth-mascot__sweat {
  animation: mascotSweat 1.4s ease-out;
}

@keyframes mascotFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

@keyframes mascotBlink {
  0%, 92%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.08); }
}

/* the squeeze mid-way sells the spin from face to back of the head */
@keyframes mascotTurn {
  0% { transform: scaleX(1) rotate(0deg); }
  50% { transform: scaleX(0.42) rotate(-3deg); }
  100% { transform: scaleX(1) rotate(-6deg); }
}

@keyframes mascotShake {
  0%, 100% { transform: translateX(0) rotate(0); }
  25% { transform: translateX(-6px) rotate(-4deg); }
  50% { transform: translateX(6px) rotate(4deg); }
  75% { transform: translateX(-3px) rotate(-2deg); }
}

@keyframes mascotSweat {
  0% { opacity: 0; transform: translateY(-6px) scale(0.6); }
  25% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(26px) scale(0.85); }
}

body.dash-route #authModal .auth-panel-right {
  padding: clamp(26px, 3vw, 38px) clamp(24px, 3vw, 38px);
}

body.dash-route #authModal .auth-form-icon {
  display: none;
}

body.dash-route #authModal .auth-step-badge {
  background: rgba(208, 181, 246, 0.32);
  color: #4a3a6b;
  font-size: 11px;
  letter-spacing: 0.06em;
}

body.dash-route #authModal .auth-title {
  font-family: var(--font-display, 'Unbounded', sans-serif);
  font-size: clamp(23px, 2.3vw, 29px);
  font-weight: 700;
  letter-spacing: -0.015em;
}

body.dash-route #authModal .auth-sub {
  margin-bottom: 22px;
  font-size: 13.5px;
  color: var(--dash-muted);
}

body.dash-route #authModal .auth-error {
  border: 1px solid rgba(249, 85, 60, 0.32);
  border-radius: 14px;
  background: #fff2ef;
  color: #b6301d;
}

body.dash-route #authModal .auth-form {
  gap: 15px;
}

body.dash-route #authModal .auth-field label {
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dash-muted);
}

body.dash-route #authModal .auth-field input {
  padding: 13px 16px;
  border: 1px solid var(--dash-line);
  border-radius: 14px;
  font-size: 14px;
}

body.dash-route #authModal .auth-field input:focus {
  border-color: rgba(249, 85, 60, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 85, 60, 0.12);
}

body.dash-route #authModal .auth-password-toggle:hover {
  color: var(--dash-orange);
}

body.dash-route #authModal .auth-code-input {
  border-radius: 16px;
  letter-spacing: 0.3em;
}

body.dash-route #authModal .auth-verify-hint {
  font-size: 12.5px;
  color: var(--dash-muted);
}

body.dash-route #authModal .auth-submit {
  margin-top: 4px;
  padding: 14px;
  border-radius: 999px;
  background: var(--dash-orange);
  box-shadow: none;
  font-size: 14.5px;
  font-weight: 600;
}

body.dash-route #authModal .auth-submit:hover {
  transform: none;
  filter: brightness(1.06);
  box-shadow: 0 12px 24px rgba(249, 85, 60, 0.28);
}

body.dash-route #authModal .auth-divider,
.auth-page-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 12px;
  color: var(--dash-muted, #8b8b8b);
  font-size: 12px;
  font-weight: 600;
}

body.dash-route #authModal .auth-divider::before,
body.dash-route #authModal .auth-divider::after,
.auth-page-divider::before,
.auth-page-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--dash-line, #ececea);
}

body.dash-route #authModal .auth-google-btn,
.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--dash-line, #ececea);
  border-radius: 999px;
  background: #fff;
  color: var(--dash-ink, #1e1e1e);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

body.dash-route #authModal .auth-google-btn:hover,
.auth-google-btn:hover {
  background: #f7f6f3;
  border-color: #ddd;
}

body.dash-route #authModal .auth-google-btn svg,
.auth-google-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

body.dash-route #authModal .auth-google-btn[hidden],
body.dash-route #authModal .auth-divider[hidden],
.auth-google-btn[hidden],
.auth-page-divider[hidden] {
  display: none !important;
}

body.dash-route #authModal .auth-switch {
  margin-top: 18px;
  font-size: 13px;
  color: var(--dash-muted);
}

body.dash-route #authModal .auth-link {
  color: var(--dash-orange);
}

body.dash-route #authModal .auth-link:hover {
  color: #dd3f28;
}

@media (max-width: 760px) {
  body.dash-route #authModal .auth-modal {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  body.dash-route #authModal .auth-panel-left {
    min-height: 128px;
    padding: 22px;
  }

  body.dash-route #authModal .auth-mascot {
    top: 50%;
    left: auto;
    right: 18px;
    width: 84px;
    transform: translateY(-50%);
  }
}

/* ===================== responsive ===================== */
@media (max-width: 1080px) {
  body.dash-route .dash-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.dash-route .dash-row,
  body.dash-route .dash-calc,
  body.dash-route .dash-contact,
  body.dash-route .dash-process {
    grid-template-columns: minmax(0, 1fr);
  }

  body.dash-route .dash-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.dash-route .dash-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  body.dash-route {
    height: auto;
    min-height: 100dvh;
    overflow: visible;
  }

  body.dash-route .dash-shell {
    display: block;
    height: auto;
    min-height: 100dvh;
    overflow: visible;
    padding: 10px 10px calc(78px + env(safe-area-inset-bottom, 0px));
  }

  body.dash-route .dash-main {
    overflow: visible;
  }

  /* Bottom control panel */
  body.dash-route .dash-rail {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    flex-direction: row;
    justify-content: space-around;
    align-items: stretch;
    gap: 2px;
    width: 100%;
    margin: 0;
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    background: var(--dash-shell);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
    overflow: visible;
    -webkit-overflow-scrolling: touch;
  }

  body.dash-route .dash-rail__logo {
    display: none;
  }

  body.dash-route .dash-rail__spacer {
    display: none;
  }

  body.dash-route .dash-tab {
    flex: 1 1 0;
    width: auto;
    height: auto;
    min-width: 0;
    min-height: 52px;
    padding: 6px 2px 4px;
    gap: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
  }

  body.dash-route .dash-tab svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }

  body.dash-route .dash-tab__tip {
    position: static;
    transform: none;
    left: auto;
    top: auto;
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    opacity: 0.72;
    pointer-events: none;
    text-align: center;
  }

  body.dash-route .dash-tab:hover .dash-tab__tip,
  body.dash-route .dash-tab.is-active .dash-tab__tip {
    opacity: 1;
    transform: none;
  }

  body.dash-route .dash-tab.is-active {
    background: var(--dash-yellow);
    color: #1e1e1e;
  }

  body.dash-route .dash-tab[data-order]:not(.is-active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
  }

  body.dash-route .dash-grid2 {
    grid-template-columns: minmax(0, 1fr);
  }

  body.dash-route .dash-top {
    flex-wrap: wrap;
  }

  body.dash-route .dash-search {
    order: 3;
    max-width: none;
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  body.dash-route .dash-cards,
  body.dash-route .dash-price-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.dash-route .dash-stats {
    grid-template-columns: minmax(0, 1fr);
  }

  body.dash-route .dash-welcome strong {
    font-size: 17px;
  }

  body.dash-route .dash-table th:nth-child(2),
  body.dash-route .dash-table td:nth-child(2) {
    display: none;
  }

  body.dash-route .dash-process-step {
    grid-template-columns: minmax(0, 1fr);
  }

  body.dash-route .dash-process__timeline::before {
    display: none;
  }

  body.dash-route .dash-process-step__visual {
    min-height: 132px;
  }

  body.dash-route .dash-process-step__meta .dash-duration {
    margin-left: 0;
  }

  body.dash-route .dash-promo--process {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.dash-route .dash-panel.is-active {
    animation: none;
  }

  body.dash-route .dash-main {
    scroll-behavior: auto;
  }

  body.dash-route .dash-cta:hover,
  body.dash-route .shot-card:hover {
    transform: none;
  }

  body.dash-route .dash-process-step {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.dash-route .dash-process-step::before,
  body.dash-route .dash-process-step__visual,
  body.dash-route .dash-process-step__meta,
  body.dash-route .dash-process-step__num,
  body.dash-route .dash-process-step__title,
  body.dash-route .dash-process-step__text,
  body.dash-route .dash-process-step__points li,
  body.dash-route .dash-process-step__points li::before {
    opacity: 1;
    transform: none;
    transition: none;
    width: auto;
  }

  body.dash-route .dash-process-step::before {
    width: 5px;
  }

  body.dash-route .dash-process-art__pulse,
  body.dash-route .dash-process-art__arc,
  body.dash-route .dash-process-art__bar {
    animation: none;
  }

  body.dash-route #authModal .auth-mascot svg,
  body.dash-route #authModal .auth-mascot__eye,
  body.dash-route #authModal .auth-mascot.is-turned .auth-mascot__body {
    animation: none;
  }
}
