body {
  height: 100vh;
  margin: 0;
  --accent: #0B2D4F;
  --accent-contrast: #ffffff;
  --accent-soft: #e4eef9;
}

.demo-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0px 24px;
  text-align: center;
  gap: 16px;
}

.demo-title {
  font-size: 4.2rem;
  font-family: Nunito;
  line-height: 1;
  color: var(--accent);
  margin: 0px;
  text-align: center;
}

.demo-logo {
  width: min(60vw, 280px);
  max-width: 280px;
  height: auto;
  display: block;
  margin: 0px auto;
}

@media (max-width: 1200px) {
  .demo-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .demo-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 480px) {
  .demo-title {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .demo-logo {
    width: min(70vw, 220px);
    max-width: 220px;
  }
}

.demo-subtitle {
  max-width: 760px;
  font-family: Nunito;
  color: #2f3b46;
  font-size: 1.25rem;
  margin: 8px auto;
}

.demo-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px;
}

.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-family: Nunito;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.demo-button.primary {
  background: var(--accent);
  color: var(--accent-contrast);
}

.demo-button.ghost {
  border: 2px solid var(--accent);
  color: var(--accent);
}

.demo-steps {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 16px 0;
}

.demo-step {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 12px 16px;
  font-family: Nunito;
  font-weight: 600;
  color: #1a2a3a;
}

.demo-page.dev-mode {
  --accent: #1f5fbf;
  --accent-soft: #e3eefc;
}

.demo-page.live-demo {
  --accent: #1e8f4e;
  --accent-soft: #e4f6ec;
}

@media (max-width: 768px) {
  .demo-subtitle {
    font-size: 1.05rem;
  }
}
