.dm-landing {
  background: #f5f7fb;
  padding-bottom: 4rem;
  color: #111827;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Containers & sections */
.dm-hero,
.dm-section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}

.dm-section--download {
  margin-top: 0;
}

.dm-section__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #111827;
}

/* HERO */
.dm-hero {
  text-align: center;
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
}

.dm-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.dm-hero__icon {
  margin-bottom: 1.5rem;
}

.dm-hero__icon-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
}

.dm-hero__icon-glyph {
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 3px solid #fff;
  border-radius: 999px;
  position: relative;
}

.dm-hero__icon-glyph::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
}

.dm-hero__title {
  font-size: 1.9rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.dm-hero__subtitle {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.dm-hero__description {
  font-size: 0.95rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto 1.75rem;
}

.dm-hero__cta {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Buttons */
.dm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
  cursor: pointer;
  white-space: nowrap;
}

.dm-btn--primary {
  background: #111827;
  color: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
}

.dm-btn--primary:hover {
  background: #020617;
  transform: translateY(-1px);
}

.dm-btn--ghost {
  background: #f9fafb;
  color: #111827;
  border-color: #e5e7eb;
}

.dm-btn--ghost:hover {
  background: #e5e7eb;
}

.dm-btn--outline {
  background: #fff;
  color: #111827;
  border-color: #d1d5db;
}

.dm-btn--outline:hover {
  background: #f3f4f6;
}

.dm-btn--small {
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

/* DOWNLOAD CARD */
.dm-card {
  border-radius: 1.25rem;
  background: #f1f5ff;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.dm-card--download {
  border: 1px solid #dbe4ff;
}

.dm-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dm-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dm-card__title {
  font-size: 1.1rem;
  font-weight: 600;
}

.dm-card__description {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 1.25rem;
}

.dm-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.dm-download__version {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.dm-download__version-number {
  font-weight: 600;
}

.dm-download__version-meta {
  font-size: 0.85rem;
  color: #6b7280;
}

/* STEPS */
.dm-section--steps {
  padding-top: 2.5rem;
}

.dm-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .dm-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.dm-step {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dm-step__number {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dm-step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dm-step__text {
  font-size: 0.9rem;
  color: #6b7280;
}

.dm-step__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  margin-top: 0.5rem;
  color: #2563eb;
  text-decoration: none;
}

.dm-step__link:hover {
  text-decoration: underline;
}

.dm-code-block {
  margin-top: 0.5rem;
  padding: 0.85rem 1rem;
  background: #020617;
  color: #e5e7eb;
  border-radius: 0.9rem;
  font-family: "SF Mono", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.85rem;
  overflow-x: auto;
}

.dm-step__config {
  margin-top: 0.5rem;
}

.dm-step__config-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.dm-step__config-path {
  display: inline-block;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.75rem;
  background: #f3f4f6;
  color: #111827;
}

.dm-step__button {
  margin-top: 0.85rem;
}

/* READY */
.dm-section--ready {
  padding-top: 2.5rem;
}

.dm-card--ready {
  background: #ecfdf3;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid #bbf7d0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dm-ready__status {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.dm-ready__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #22c55e;
  position: relative;
}

.dm-ready__icon::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 7px;
  width: 12px;
  height: 18px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(40deg);
}

.dm-ready__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dm-ready__text {
  font-size: 0.9rem;
  color: #4b5563;
}

.dm-ready__button {
  align-self: center;
}

/* FEATURES */
.dm-section--features {
  padding-top: 2.5rem;
}

.dm-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .dm-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.dm-feature-card {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.4rem 1.4rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.03);
}

.dm-feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}

.dm-feature-card__icon--blue {
  background: #2563eb;
}

.dm-feature-card__icon--purple {
  background: #8b5cf6;
}

.dm-feature-card__icon--green {
  background: #22c55e;
}

.dm-feature-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.dm-feature-card__text {
  font-size: 0.9rem;
  color: #6b7280;
}

/* DOCS / ISSUES */
.dm-section--docs {
  padding-top: 2.5rem;
}

.dm-docs {
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.03);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dm-docs__title {
  margin-bottom: 0.25rem;
}

.dm-docs__subtitle {
  font-size: 0.9rem;
  color: #6b7280;
}

.dm-docs__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .dm-card,
  .dm-card--ready,
  .dm-docs,
  .dm-step {
    padding: 1.25rem 1.1rem;
  }
  .dm-hero__title {
    font-size: 1.6rem;
  }
  .dm-hero__subtitle {
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=home.css.map */
