.dashboard-eyebrow {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.dashboard-greeting {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
}

.dashboard-hero-subtitle {
  margin-top: 14px;
  max-width: 700px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.dashboard-v2 {
  max-width: 1040px;
  margin: 28px auto 0;
  padding-bottom: 48px;
}

.dashboard-v2-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.dashboard-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  margin: 0 0 20px;
  border-radius: 999px;
  background: rgba(47, 49, 146, 0.08);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-v2-hero h1 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.dashboard-v2-hero p:last-child {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
}

.dashboard-v2-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.dashboard-v2-stat {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.07);
}

.dashboard-stat-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 25px;
  font-weight: 900;
}

.dashboard-stat-icon.blue {
  background: #eef0ff;
  color: #2f3192;
}

.dashboard-stat-icon.green {
  background: #eaf8ef;
  color: #16a34a;
}

.dashboard-stat-icon.gold {
  background: #fff4d8;
  color: #d99a00;
}

.dashboard-v2-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.dashboard-v2-stat span {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
}

.dashboard-v2-stat p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 650;
}

.dashboard-v2-card,
.dashboard-best-move,
.dashboard-north-star-card {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 46px rgba(16, 24, 40, 0.07);
}

.continue-building-card {
  padding: 30px;
  margin-bottom: 26px;
}

.dashboard-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.dashboard-section-heading h2,
.dashboard-journey-card h2,
.dashboard-north-star-card h2 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.dashboard-section-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: #f0ecff;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-continue-project {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 26px;
}

.dashboard-project-icon {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.85), transparent 34%),
    linear-gradient(135deg, #865dff, #4b35d6);
  box-shadow: 0 18px 34px rgba(47, 49, 146, 0.24);
}

.dashboard-project-icon span {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.dashboard-project-main h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.14;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.dashboard-project-main p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.dashboard-progress-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 16px;
  align-items: center;
  margin-top: 20px;
}

.dashboard-progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 24, 40, 0.08);
}

.dashboard-progress-track div {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4b35d6, #6d5dfc);
}

.dashboard-progress-row strong {
  color: var(--text);
  font-size: 16px;
  font-weight: 900;
}

.dashboard-current-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 22px;
  background: rgba(16, 24, 40, 0.06);
  border: 1px solid rgba(16, 24, 40, 0.06);
}

.dashboard-current-step-grid article {
  padding: 20px;
  background: #f7f8fb;
}

.dashboard-current-step-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.dashboard-current-step-grid strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  font-weight: 900;
}

.dashboard-current-step-grid p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.dashboard-action-row {
  display: flex;
  align-items: center;
  gap: 22px;
}

.dashboard-action-row .compass-primary-btn {
  min-width: 210px;
  min-height: 54px;
  font-size: 15px;
}

.dashboard-link-button {
  border: 0;
  background: transparent;
  color: var(--accent);
  padding: 0;
  font-size: 15px;
  font-weight: 900;
}

.dashboard-best-move {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 62px;
  gap: 22px;
  align-items: center;
  padding: 28px;
  margin-bottom: 26px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 196, 87, 0.16), transparent 34%),
    linear-gradient(135deg, #fffaf0, #ffffff);
  border-color: rgba(217, 154, 0, 0.16);
}

.best-move-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f6c044, #e5a200);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.dashboard-best-move span {
  display: block;
  margin-bottom: 7px;
  color: #d28a00;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-best-move h2 {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.dashboard-best-move p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.dashboard-best-move strong {
  color: #139c54;
  font-size: 13px;
  font-weight: 900;
}

.dashboard-best-move button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  font-size: 24px;
  font-weight: 900;
}

.dashboard-journey-card {
  padding: 30px;
  margin-bottom: 26px;
}

.dashboard-journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.dashboard-journey::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 31px;
  height: 5px;
  border-radius: 999px;
  background: #e6e8ef;
}

.dashboard-journey::after {
  content: "";
  position: absolute;
  left: 12%;
  width: 26%;
  top: 31px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4b35d6, #6d5dfc);
}

.journey-item {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.journey-item div {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #eef0f6;
  color: #6b7280;
  font-size: 25px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(16, 24, 40, 0.08);
}

.journey-item.complete div,
.journey-item.active div {
  background: linear-gradient(135deg, #865dff, #4b35d6);
  color: #fff;
  box-shadow: 0 14px 30px rgba(47, 49, 146, 0.22);
}

.journey-item span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-item p {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
}

.journey-item strong {
  margin-top: 10px;
  color: #16a34a;
  font-size: 22px;
  font-weight: 900;
}

.dashboard-north-star-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) minmax(420px, 1.3fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(47, 49, 146, 0.08), transparent 34%),
    #ffffff;
}

.north-star-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: #eef0ff;
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
}

.dashboard-north-star-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 650;
}

.north-star-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(16, 24, 40, 0.08);
}

.north-star-metrics article {
  padding: 0 22px;
  border-right: 1px solid rgba(16, 24, 40, 0.08);
}

.north-star-metrics article:last-child {
  border-right: 0;
}

.north-star-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.north-star-metrics strong {
  display: block;
  margin: 8px 0 5px;
  color: var(--text);
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.north-star-metrics p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 980px) {
  .dashboard-v2 {
    margin-top: 18px;
  }

  .dashboard-v2-stats,
  .dashboard-current-step-grid,
  .dashboard-journey,
  .dashboard-north-star-card {
    grid-template-columns: 1fr;
  }

  .dashboard-journey::before,
  .dashboard-journey::after {
    display: none;
  }

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

  .dashboard-best-move button {
    width: 100%;
  }

  .dashboard-north-star-card {
    align-items: start;
  }

  .north-star-metrics {
    grid-template-columns: 1fr;
    border-left: 0;
    gap: 14px;
  }

  .north-star-metrics article {
    padding: 14px;
    border: 1px solid rgba(16, 24, 40, 0.08);
    border-radius: 18px;
  }

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

.dashboard-v2-hero {
  margin: 34px 0 28px;
}

.dashboard-greeting,
#hero-greeting {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.055em;
  font-weight: 900;
  color: var(--text);
}

.dashboard-hero-subtitle {
  margin: 14px 0 0;
  max-width: 640px;
  font-size: 20px;
  line-height: 1.45;
  color: var(--muted);
  font-weight: 650;
}

.dashboard-journey-steps {
  align-items: start;
}

.dashboard-journey-step {
  display: grid;
  grid-template-rows: 68px 22px 28px 22px;
  justify-items: center;
  text-align: center;
}

.dashboard-journey-step-title {
  min-height: 22px;
  display: flex;
  align-items: center;
}

.dashboard-journey-step-status {
  min-height: 28px;
  display: flex;
  align-items: center;
}

.dashboard-journey-step-indicator {
  min-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-journey-check {
  color: #16a34a;
  font-size: 24px;
  line-height: 1;
}

.dashboard-journey-muted {
  color: rgba(102, 112, 133, 0.45);
  font-size: 20px;
  line-height: 1;
}

.journey-item {
  display: grid;
  grid-template-rows: 64px 20px 26px 22px;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.journey-item span,
.journey-item p,
.journey-item strong {
  margin: 0;
  line-height: 1;
}

.journey-placeholder {
  opacity: 0;
}