:root {
  --ink: #10201a;
  --muted: #60726b;
  --line: #d9e7df;
  --paper: #fbfdfb;
  --soft: #eff8f3;
  --green: #248464;
  --green-dark: #0f6a4d;
  --mint: #dff5ea;
  --gold: #d8a640;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, rgba(216, 166, 64, 0.18), transparent 22rem),
    radial-gradient(circle at 84% 8%, rgba(36, 132, 100, 0.18), transparent 30rem),
    linear-gradient(180deg, #f8fcfa 0%, #ffffff 68%);
  min-height: 100vh;
}

button,
input,
select {
  font: inherit;
}

.app-header {
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand,
.back-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 1.2rem;
}

.back-link {
  color: var(--muted);
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.landing {
  overflow: hidden;
}

.premium-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid rgba(217, 231, 223, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(239, 248, 243, 0.84)),
    radial-gradient(circle at 82% 44%, rgba(36, 132, 100, 0.2), transparent 24rem);
}

.premium-hero::before,
.premium-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.premium-hero::before {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 80px;
  border: 1px solid rgba(36, 132, 100, 0.16);
  animation: slow-spin 28s linear infinite;
}

.premium-hero::after {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 44px;
  background: repeating-linear-gradient(90deg, rgba(36, 132, 100, 0.08) 0 1px, transparent 1px 18px);
  opacity: 0.8;
  animation: float-panel 8s ease-in-out infinite;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  padding: 70px 0 58px;
}

.hero-orbit {
  position: absolute;
  inset: 96px auto auto 46%;
  width: 250px;
  height: 250px;
  border: 1px dashed rgba(36, 132, 100, 0.2);
  border-radius: 50%;
  animation: slow-spin 22s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(36, 132, 100, 0.42);
}

.dot-one {
  left: 18px;
  top: 34px;
}

.dot-two {
  right: 12px;
  top: 112px;
  background: var(--gold);
}

.dot-three {
  left: 106px;
  bottom: 8px;
  background: #4bb389;
}

.hero {
  min-height: calc(88vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: clamp(32px, 7vw, 104px);
  padding: 68px 0 44px;
}

.premium-hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 7.5vw, 6.85rem);
}

.premium-hero .lede {
  max-width: 650px;
}

.eyebrow,
.card-label {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(2.55rem, 7vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-pills span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 900;
}

.primary-action,
.secondary-action {
  min-height: 48px;
  border-radius: 8px;
  border: 1px solid var(--green);
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
}

.primary-action {
  color: white;
  background: linear-gradient(135deg, var(--green), #126246);
  box-shadow: 0 16px 40px rgba(36, 132, 100, 0.28);
}

.secondary-action {
  color: var(--green-dark);
  background: white;
}

.note {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.score-card,
.wealth-preview,
.benefit-card,
.metric-card,
.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(33, 68, 55, 0.08);
}

.score-card {
  padding: 28px;
  display: grid;
  gap: 24px;
}

.wealth-preview {
  position: relative;
  padding: 24px;
  display: grid;
  gap: 22px;
  min-width: 0;
  overflow: hidden;
}

.wealth-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(217, 231, 223, 0.9);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 252, 249, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(216, 166, 64, 0.22), transparent 16rem);
  box-shadow: 0 30px 80px rgba(33, 68, 55, 0.16);
  animation: float-card 6.5s ease-in-out infinite;
}

.wealth-console::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(36, 132, 100, 0.09);
  border-radius: 8px;
  pointer-events: none;
}

.console-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -52px;
  top: -48px;
  border-radius: 50%;
  background: rgba(36, 132, 100, 0.18);
  filter: blur(8px);
}

.console-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.console-header strong {
  color: var(--ink);
}

.score-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
}

.premium-score {
  box-shadow: inset 0 0 0 1px rgba(36, 132, 100, 0.1), 0 18px 50px rgba(36, 132, 100, 0.14);
  animation: pulse-score 4s ease-in-out infinite;
}

.floating-token {
  position: absolute;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(36, 132, 100, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(33, 68, 55, 0.08);
  font-size: 0.86rem;
  font-weight: 900;
}

.token-save {
  left: 8px;
  top: 54px;
  animation: drift-one 5.5s ease-in-out infinite;
}

.token-invest {
  right: 4px;
  top: 104px;
  animation: drift-two 6.2s ease-in-out infinite;
}

.token-streak {
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  animation: drift-three 5.8s ease-in-out infinite;
}

.console-rows {
  position: relative;
  display: grid;
  gap: 12px;
}

.console-rows div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

.console-rows span {
  color: var(--muted);
  font-weight: 800;
}

.console-rows strong {
  color: var(--ink);
}

.console-rows i {
  grid-column: 1 / -1;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  animation: shimmer 3.4s ease-in-out infinite;
}

.preview-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: flex-start;
}

.preview-top .status-pill {
  max-width: 100%;
  white-space: nowrap;
}

.score-ring {
  width: 190px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
  background:
    radial-gradient(circle at center, white 58%, transparent 59%),
    conic-gradient(var(--green) 72%, var(--mint) 0);
}

.score-ring span {
  font-size: 4.8rem;
  font-weight: 900;
}

.score-ring small {
  margin-left: -24px;
  align-self: end;
  padding-bottom: 48px;
  color: var(--muted);
  font-weight: 800;
}

.preview-bars {
  display: grid;
  gap: 16px;
}

.preview-bars div {
  display: grid;
  gap: 8px;
}

.preview-bars div > span {
  color: var(--muted);
  font-weight: 800;
}

.preview-bars strong {
  font-size: 1.2rem;
}

.gold-bar span {
  background: var(--gold);
}

.benefits {
  padding: 20px 0 76px;
}

.story-section,
.how-section,
.privacy-section,
.pricing-section {
  padding: clamp(58px, 8vw, 100px) 0;
}

.center-heading {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.center-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.motion-card,
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 60px rgba(33, 68, 55, 0.08);
}

.motion-card {
  min-height: 230px;
  padding: 28px;
  animation: soft-rise 7s ease-in-out infinite;
}

.motion-card::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  right: -28px;
  bottom: -34px;
  border-radius: 50%;
  border: 18px solid rgba(36, 132, 100, 0.08);
}

.lift-two {
  animation-delay: -1.8s;
}

.lift-three {
  animation-delay: -3.2s;
}

.card-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.86rem;
  font-weight: 900;
}

.motion-card h3,
.price-card h3,
.timeline h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.motion-card p,
.timeline p,
.privacy-panel p,
.price-card li,
.billing-copy {
  color: var(--muted);
  line-height: 1.65;
}

.how-section {
  background:
    linear-gradient(180deg, rgba(15, 106, 77, 0.04), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 10% 10%, rgba(36, 132, 100, 0.11), transparent 24rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.split-section h2,
.privacy-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.timeline article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-weight: 900;
}

.privacy-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 76px);
  overflow: hidden;
  border: 1px solid rgba(217, 231, 223, 0.8);
  border-radius: 8px;
  padding: clamp(28px, 5vw, 58px);
  background:
    linear-gradient(135deg, #0f2d24, #175a43 68%, #1e7a5b);
  color: white;
  box-shadow: 0 28px 80px rgba(15, 45, 36, 0.18);
}

.privacy-panel::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  right: -120px;
  bottom: -110px;
  border-radius: 50%;
  border: 42px solid rgba(255, 255, 255, 0.08);
  animation: slow-spin 24s linear infinite;
}

.privacy-panel .eyebrow,
.privacy-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.privacy-panel h2 {
  color: white;
}

.privacy-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.privacy-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 800;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 420px));
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.price-card {
  padding: 28px;
}

.premium-plan {
  border-color: rgba(36, 132, 100, 0.42);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 243, 0.98)),
    radial-gradient(circle at right top, rgba(216, 166, 64, 0.22), transparent 16rem);
  transform: translateY(-10px);
}

.save-badge {
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 999px;
  padding: 7px 11px;
  color: white;
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-line {
  display: flex;
  align-items: end;
  gap: 8px;
  margin: 18px 0 10px;
}

.price-line strong {
  font-size: 3.2rem;
  line-height: 0.94;
}

.price-line span {
  color: var(--muted);
  font-weight: 800;
}

.billing-copy {
  min-height: 30px;
}

.billing-copy s {
  color: #8a4d4d;
  text-decoration-thickness: 2px;
}

.price-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-panel {
  50% {
    transform: translate3d(12px, -18px, 0);
  }
}

@keyframes float-card {
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-score {
  50% {
    transform: scale(1.025);
  }
}

@keyframes drift-one {
  50% {
    transform: translate3d(12px, -10px, 0);
  }
}

@keyframes drift-two {
  50% {
    transform: translate3d(-12px, 10px, 0);
  }
}

@keyframes drift-three {
  50% {
    transform: translate(-50%, -9px);
  }
}

@keyframes shimmer {
  50% {
    filter: brightness(1.16);
  }
}

@keyframes soft-rise {
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.section-heading {
  max-width: 680px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  padding: 22px;
}

.benefit-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard {
  padding: 48px 0 72px;
}

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

.dashboard h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

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

.metric-card {
  padding: 22px;
}

.metric-card p,
.metric-card span {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 8px 0 2px;
  font-size: 2.4rem;
}

.metric-card.accent {
  background: var(--green);
  color: white;
}

.metric-card.accent p,
.metric-card.accent span {
  color: rgba(255, 255, 255, 0.82);
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.flow-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 22px;
}

.flow-steps span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--green-dark);
  background: var(--soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.workbench {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #40534c;
  font-weight: 800;
}

.form-grid input,
.form-grid select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
  font-weight: 800;
}

.money-input {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  overflow: hidden;
}

.money-input span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--muted);
  font-weight: 900;
}

.money-input input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  padding-left: 6px;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 0 12px;
}

.check-row input {
  width: 18px;
  min-height: 18px;
}

.form-submit {
  grid-column: 1 / -1;
}

.small-action {
  min-height: 38px;
  padding-inline: 14px;
}

.history-panel {
  margin-top: 16px;
}

.history-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.history-item {
  display: grid;
  grid-template-columns: 90px repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.history-item strong {
  display: block;
}

.history-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.empty-state {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--paper);
}

.panel {
  padding: 24px;
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.habit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.habit-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.plant-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
}

.plant {
  position: relative;
  height: 210px;
}

.stem {
  position: absolute;
  left: 73px;
  bottom: 54px;
  width: 8px;
  height: 112px;
  border-radius: 999px;
  background: var(--green);
}

.leaf {
  position: absolute;
  width: 70px;
  height: 42px;
  border-radius: 70% 12px 70% 12px;
  background: #49b985;
  top: 52px;
}

.leaf.left {
  left: 16px;
  transform: rotate(-18deg);
}

.leaf.right {
  right: 12px;
  transform: scaleX(-1) rotate(-18deg);
}

.pot {
  position: absolute;
  left: 36px;
  bottom: 22px;
  width: 86px;
  height: 54px;
  border-radius: 8px 8px 20px 20px;
  background: var(--gold);
}

.progress-bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--mint);
}

.progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

@media (max-width: 820px) {
  .app-header {
    padding-inline: 20px;
  }

  .hero,
  .hero-layout,
  .panel-grid,
  .plant-panel,
  .workbench,
  .split-section,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-layout {
    min-height: auto;
    padding: 42px 0;
  }

  .premium-hero {
    min-height: auto;
  }

  .hero-orbit {
    left: auto;
    right: -110px;
    top: 160px;
  }

  .score-card {
    order: -1;
  }

  .wealth-preview {
    order: -1;
  }

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

  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .premium-plan {
    transform: none;
  }
}

@media (max-width: 700px) {
  .form-grid,
  .history-item,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3.35rem);
  }

  .premium-hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.6rem);
  }

  .wealth-console {
    padding: 18px;
  }

  .score-stage {
    min-height: 250px;
  }

  .floating-token {
    font-size: 0.78rem;
  }

  .price-line strong {
    font-size: 2.65rem;
  }

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

  .dashboard-top {
    display: grid;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .panel-heading {
    display: grid;
  }

  .flow-steps span {
    width: 100%;
  }
}
