.design-system {
  --bg: #fafafa;
  --bg-alt: #f3f4f6;
  --card-bg: #ffffff;
  --text: #1f2937;
  --text-muted: #6b7280;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #7c3aed;
  --accent: #10b981;
  --hover-bg: rgba(0, 0, 0, 0.05);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, monospace;
}
.design-system *,
.design-system *::before,
.design-system *::after {
  box-sizing: border-box;
}
.design-system {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  .design-system {
    scroll-behavior: auto;
  }
}
.design-system {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
.design-system h1,
.design-system h2,
.design-system h3,
.design-system h4,
.design-system h5,
.design-system h6 {
  margin: 0 0 24px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.design-system h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .design-system h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1000px) {
  .design-system h1 {
    font-size: 4rem;
  }
}
.design-system h2 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .design-system h2 {
    font-size: 2.5rem;
  }
}
.design-system h2 {
  margin-bottom: 32px;
}
.design-system h3 {
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 768px) {
  .design-system h3 {
    font-size: 2rem;
  }
}
.design-system h4 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
}
.design-system p {
  margin: 0 0 24px;
  line-height: 1.625;
}
.design-system p:last-child {
  margin-bottom: 0;
}
.design-system a:not(.btn) {
  color: var(--primary);
  text-decoration: none;
  transition: color 150ms ease;
}
.design-system a:not(.btn):hover {
  text-decoration: underline;
}
.design-system code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  padding: 0.2em 0.4em;
  background: var(--bg-alt);
  border-radius: 4px;
}
.design-system pre {
  margin: 32px 0;
  padding: 24px;
  background: #1f2937;
  color: #f9fafb;
  border-radius: 8px;
  overflow-x: auto;
}
.design-system pre code {
  background: none;
  padding: 0;
  color: inherit;
}
.design-system img {
  max-width: 100%;
  height: auto;
  display: block;
}
.design-system ul,
.design-system ol {
  margin: 0 0 24px;
  padding-left: 32px;
}
.design-system li {
  margin-bottom: 8px;
}
.design-system [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
.design-system [data-reveal=left] {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=left].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.design-system [data-reveal=right] {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=right].is-visible {
  opacity: 1;
  transform: translateX(0);
}
.design-system [data-reveal=scale] {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.design-system [data-reveal=scale].is-visible {
  opacity: 1;
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .design-system [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.design-system .container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system .container--narrow {
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container--narrow {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system .container--default {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
@media (min-width: 768px) {
  .design-system .container--default {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.design-system section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media (max-width: 768px) {
  .design-system section {
    padding-top: 57.6px;
    padding-bottom: 57.6px;
  }
}
.design-system section.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .design-system section.compact {
    padding-top: 38.4px;
    padding-bottom: 38.4px;
  }
}
.design-system section.alt {
  background: var(--bg-alt);
}
.design-system section.dark {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
  --card-bg: #374151;
}
.design-system section.gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, #faf5ff 100%);
}

.design-system .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn:focus {
  outline: none;
}
.design-system .btn:focus-visible {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 2px;
}
.design-system .btn {
  text-decoration: none;
}
.design-system .btn:hover {
  text-decoration: none;
}
.design-system .btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--primary {
  background: var(--primary, #2563eb);
  color: #fff;
}
.design-system .btn--primary:hover:not(:disabled) {
  background: var(--primary-dark, #1d4ed8);
  transform: translateY(-1px);
}
.design-system .btn--primary:active:not(:disabled) {
  transform: translateY(0);
}
.design-system .btn--primary {
  color: #fff;
}
.design-system .btn--primary:hover {
  color: #fff;
  text-decoration: none;
}
.design-system .btn--secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--secondary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--secondary {
  background: transparent;
  border-color: var(--primary, #2563eb);
  color: var(--primary, #2563eb);
}
.design-system .btn--secondary:hover:not(:disabled) {
  background: var(--primary, #2563eb);
  color: #fff;
}
.design-system .btn--ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .btn--ghost:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .btn--ghost {
  background: transparent;
  color: var(--text, #1f2937);
}
.design-system .btn--ghost:hover:not(:disabled) {
  background: var(--hover-bg, rgba(0, 0, 0, 0.05));
}
.design-system .btn--lg {
  padding: 24px 48px;
  font-size: 1.125rem;
}
.design-system .btn--sm {
  padding: 8px 24px;
  font-size: 0.875rem;
}

.design-system .hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: 128px 24px;
}
@media (min-width: 769px) {
  .design-system .hero {
    min-height: 70vh;
    padding: 128px 32px;
  }
}
.design-system .hero h1 {
  max-width: 900px;
  margin-bottom: 32px;
}
.design-system .hero .lead {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .design-system .hero .lead {
    font-size: 1.25rem;
  }
}
.design-system .hero .lead {
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 48px;
}
.design-system .badge {
  font-size: 0.875rem;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-weight: 600;
  margin-bottom: 24px;
}
.design-system .actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.design-system ul.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.design-system ul.features > li {
  margin: 0;
  padding: 0;
}
.design-system div.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.design-system .feature {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  transition: transform 250ms ease, border-color 250ms ease;
}
.design-system .feature:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
}
.design-system .feature {
  height: 100%;
}
.design-system .feature .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.design-system .feature h3,
.design-system .feature h4 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
  margin-bottom: 8px;
}
.design-system .feature p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.design-system dl.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.design-system div.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
}
.design-system .stat {
  text-align: center;
  min-width: 150px;
}
.design-system .stat dd {
  margin: 0;
}
.design-system .stat strong {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .design-system .stat strong {
    font-size: 4rem;
  }
}
.design-system .stat span {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.design-system .cta {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}
.design-system .cta h2 {
  margin-bottom: 16px;
}
.design-system .cta p {
  font-size: 1.125rem;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .design-system .cta p {
    font-size: 1.25rem;
  }
}
.design-system .cta p {
  opacity: 0.9;
  max-width: 600px;
  margin-bottom: 32px;
}
.design-system .cta .btn--secondary {
  border-color: #fff;
  color: #fff;
}
.design-system .cta .btn--secondary:hover {
  background: #fff;
  color: var(--primary);
}

.design-system .split {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 64px;
  align-items: center;
}
@media (min-width: 769px) {
  .design-system .split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
  }
}
@media (min-width: 769px) {
  .design-system .split--reverse > :first-child {
    order: 2;
  }
  .design-system .split--reverse > :last-child {
    order: 1;
  }
}
.design-system .split > figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.design-system .split > figure img {
  width: 100%;
  height: auto;
}
.design-system .split-full {
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .design-system .split-full {
    flex-direction: row;
  }
}
.design-system .split-full__left,
.design-system .split-full__right {
  flex: 1;
  padding: 96px 24px;
  display: flex;
}
@media (min-width: 769px) {
  .design-system .split-full__left,
  .design-system .split-full__right {
    padding: 96px 32px;
  }
}
.design-system .split-full__left {
  background: var(--bg-alt);
  justify-content: flex-end;
}
.design-system .split-full__left > * {
  width: 100%;
  max-width: calc(1200px / 2);
}
@media (min-width: 769px) {
  .design-system .split-full__left > * {
    padding-right: 64px;
  }
}
.design-system .split-full__right {
  background: var(--card-bg);
  justify-content: flex-start;
}
.design-system .split-full__right > * {
  width: 100%;
  max-width: calc(1200px / 2);
}
@media (min-width: 769px) {
  .design-system .split-full__right > * {
    padding-left: 64px;
  }
}
.design-system .split-full--dark-left .split-full__left {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
}
.design-system .split-full--dark-left .split-full__right {
  background: var(--bg);
}
.design-system .split-full--dark-right .split-full__left {
  background: var(--bg);
}
.design-system .split-full--dark-right .split-full__right {
  background: #1f2937;
  color: #f9fafb;
  --text: #f9fafb;
  --text-muted: #9ca3af;
}
.design-system .split-full--primary-left .split-full__left {
  background: var(--primary);
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}
.design-system .split-full--primary-right .split-full__right {
  background: var(--primary);
  color: #fff;
  --text: #fff;
  --text-muted: rgba(255, 255, 255, 0.8);
}

.design-system .grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 769px) {
  .design-system .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1001px) {
  .design-system .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}
.design-system .grid--2 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}
@media (min-width: 769px) {
  .design-system .grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}
.design-system .grid--4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 769px) {
  .design-system .grid--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.design-system .slider-container {
  position: relative;
}
.design-system .slider-container:not(:has(.slider.overflowing)) .slider-nav {
  display: none;
}
.design-system .slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  margin: 0;
  list-style: none;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) transparent;
}
.design-system .slider::-webkit-scrollbar {
  height: 6px;
}
.design-system .slider::-webkit-scrollbar-track {
  background: transparent;
}
.design-system .slider::-webkit-scrollbar-thumb {
  background: var(--text-muted);
  border-radius: 9999px;
}
@media (prefers-reduced-motion: reduce) {
  .design-system .slider {
    scroll-behavior: auto;
  }
}
.design-system .slider > * {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.design-system .slider > .feature,
.design-system .slider > article,
.design-system .slider > li {
  width: 300px;
}
@media (min-width: 769px) {
  .design-system .slider > .feature,
  .design-system .slider > article,
  .design-system .slider > li {
    width: 340px;
  }
}
.design-system .slider-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.design-system .slider-prev,
.design-system .slider-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .slider-prev:disabled,
.design-system .slider-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.design-system .slider-prev:focus,
.design-system .slider-next:focus {
  outline: none;
}
.design-system .slider-prev:focus-visible,
.design-system .slider-next:focus-visible {
  outline: 2px solid var(--primary, #2563eb);
  outline-offset: 2px;
}
.design-system .slider-prev,
.design-system .slider-next {
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--bg-alt);
  border-radius: 9999px;
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 150ms ease;
}
.design-system .slider-prev:hover:not([disabled]),
.design-system .slider-next:hover:not([disabled]) {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.design-system .slider-prev[disabled],
.design-system .slider-next[disabled] {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.design-system .dark .slider-prev,
.design-system .dark .slider-next {
  background: var(--card-bg);
  border-color: #4b5563;
  color: #f9fafb;
}
.design-system .dark .slider-prev:hover:not([disabled]),
.design-system .dark .slider-next:hover:not([disabled]) {
  background: var(--primary);
  border-color: var(--primary);
}

.design-system ul.items {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.design-system ul.items:not(.slider) > li {
  flex: 1 1 280px;
  max-width: 100%;
}
@media (min-width: 769px) {
  .design-system ul.items:not(.slider) > li {
    max-width: calc(50% - 16px);
  }
}
@media (min-width: 1001px) {
  .design-system ul.items:not(.slider) > li {
    max-width: calc(33.333% - 21.3333333333px);
  }
}
.design-system ul.items.slider {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--text-muted) transparent;
}
@media (prefers-reduced-motion: reduce) {
  .design-system ul.items.slider {
    scroll-behavior: auto;
  }
}
.design-system ul.items.slider > li {
  flex-shrink: 0;
  scroll-snap-align: start;
  width: 280px;
}
@media (min-width: 769px) {
  .design-system ul.items.slider > li {
    width: 320px;
  }
}
.design-system ul.items > li {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--card-bg, #fff);
  transition: transform 250ms ease, border-color 250ms ease;
}
.design-system ul.items > li:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.2);
}
.design-system ul.items > li {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}
.design-system ul.items > li .image-link {
  display: block;
  overflow: hidden;
}
.design-system ul.items > li .image-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 150ms ease;
}
.design-system ul.items > li .image-link:hover img {
  transform: scale(1.05);
}
.design-system ul.items > li h3 {
  font-size: 1.25rem;
  line-height: 1.375;
  font-weight: 600;
  margin: 0;
  padding: 24px 24px 0;
}
.design-system ul.items > li h3 a {
  color: var(--text);
  text-decoration: none;
}
.design-system ul.items > li h3 a:hover {
  color: var(--primary);
}
.design-system ul.items > li .price {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--primary);
  margin: 8px 0 0;
  padding: 0 24px 24px;
}
.design-system ul.items > li p:not(.price) {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 8px 0 0;
  padding: 0 24px 24px;
}

.design-system .code-block {
  position: relative;
}
.design-system .code-block header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #374151;
  border-radius: 8px 8px 0 0;
  color: #9ca3af;
  font-size: 0.875rem;
}
.design-system .code-block .dots {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
}
.design-system .code-block .dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.design-system .code-block .dots span:nth-child(1) {
  background: #ef4444;
}
.design-system .code-block .dots span:nth-child(2) {
  background: #f59e0b;
}
.design-system .code-block .dots span:nth-child(3) {
  background: #10b981;
}
.design-system .code-block pre {
  margin: 0;
  padding: 24px;
  background: #1f2937;
  border-radius: 0 0 8px 8px;
  color: #e5e7eb;
}
.design-system .code-block pre code {
  font-size: 0.875rem;
  line-height: 1.625;
  color: #e5e7eb;
  background: none;
  white-space: pre-wrap;
  word-break: break-word;
}

.design-system footer.site-footer {
  padding: 64px 0;
  background: #1f2937;
  color: #9ca3af;
}
.design-system footer.site-footer a {
  color: #d1d5db;
}
.design-system footer.site-footer a:hover {
  color: #fff;
}
.design-system footer.site-footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}
@media (min-width: 769px) {
  .design-system footer.site-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
  }
}
.design-system footer.site-footer nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 769px) {
  .design-system footer.site-footer nav {
    justify-content: flex-start;
  }
}

.design-system .text-center {
  text-align: center;
}
.design-system .text-muted {
  color: var(--text-muted);
}
.design-system .text-primary {
  color: var(--primary);
}
.design-system .mt-0 {
  margin-top: 0;
}
.design-system .mb-0 {
  margin-bottom: 0;
}
.design-system .mt-lg {
  margin-top: 32px;
}
.design-system .mb-lg {
  margin-bottom: 32px;
}
.design-system .mt-xl {
  margin-top: 48px;
}
.design-system .mb-xl {
  margin-bottom: 48px;
}
.design-system .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html[data-theme="90s-computer"] {
  --width-content: 950px;
  --color-bg: #c0c0c0;
  --color-text: #000000;
  --color-link: #0000ff;
  --color-link-hover: #ff0000;
  --border: 2px outset #c0c0c0;
  --border-radius: 0;
  --box-shadow: inset -1px -1px #000000, inset 1px 1px #ffffff;
  --font-family-heading: "MS Sans Serif", "Chicago", sans-serif;
  --font-family-body: "MS Sans Serif", "Chicago", sans-serif;
  --line-height: 1.3;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=floral] {
  --width-content: 1000px;
  --color-bg: #ffe0f0;
  --color-text: #d1006c;
  --color-link: #ff69b4;
  --color-link-hover: #ff1493;
  --border: 3px solid #ffb6c1;
  --border-radius: 25px;
  --box-shadow: 5px 5px 15px rgba(255, 182, 193, 0.5);
  --font-family-heading: "Princess Sofia", "Brush Script MT", cursive;
  --font-family-body: Georgia, "Times New Roman", serif;
  --line-height: 1.6;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: wavy;
}

html[data-theme=hacker] {
  --color-bg: #000000;
  --color-text: #00ff00;
  --color-link: #00ff00;
  --color-link-hover: #33ff33;
  --border: 2px solid #00ff00;
  --border-radius: 0;
  --box-shadow: 0 0 10px #00ff00;
  --font-family-heading: "Share Tech Mono", "Lucida Console", "Courier New", monospace;
  --font-family-body: "Share Tech Mono", "Lucida Console", "Courier New", monospace;
  --line-height: 1.2;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=monochrome] {
  --color-bg: #1a1a1a;
  --color-text: #e0e0e0;
  --color-link: #ffffff;
  --color-link-hover: #cccccc;
  --border: 1px solid #808080;
  --border-radius: 2px;
  --box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  --font-family-heading: system-ui, sans-serif;
  --font-family-body: system-ui, sans-serif;
  --line-height: 1.4;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=neon] {
  --width-content: 1100px;
  --color-bg: #0a0a0a;
  --color-text: #ff00ff;
  --color-link: #00ffff;
  --color-link-hover: #ffff00;
  --border: 2px solid #ff00ff;
  --border-radius: 12px;
  --box-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
  --font-family-heading: "Orbitron", Bahnschrift, "DIN Alternate", "Franklin Gothic Medium", sans-serif;
  --font-family-body: "Orbitron", Avenir, Montserrat, Corbel, sans-serif;
  --line-height: 1.5;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: double;
}

html[data-theme=ocean] {
  --color-bg: #001f3f;
  --color-text: #7fdbff;
  --color-link: #39cccc;
  --color-link-hover: #7fdbff;
  --border: 2px solid #0074d9;
  --border-radius: 0;
  --box-shadow: 8px 8px 16px rgba(0, 0, 0, 0.4);
  --font-family-heading: "Courier New", monospace;
  --font-family-body: "Courier New", monospace;
  --line-height: 1.8;
  --link-decoration: underline;
  --link-decoration-hover: none;
  --link-decoration-style: wavy;
}

html[data-theme=old-mac] {
  --width-content: 900px;
  --color-bg: #dddddd;
  --color-text: #000000;
  --color-link: #0000ee;
  --color-link-hover: #551a8b;
  --border: 1px solid #000000;
  --border-radius: 4px;
  --box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
  --font-family-heading: Chicago, Charcoal, sans-serif;
  --font-family-body: Geneva, sans-serif;
  --line-height: 1.4;
  --link-decoration: underline;
  --link-decoration-hover: underline;
  --link-decoration-style: solid;
}

html[data-theme=rainbow] {
  --width-content: 1200px;
  --color-bg: #fff;
  --color-text: #333;
  --color-link: #ff00ff;
  --color-link-hover: #ff66ff;
  --border: 3px solid #ff6b6b;
  --border-radius: 15px;
  --box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
  --font-family-heading: "Comic Sans MS", "Marker Felt", fantasy;
  --font-family-body: "Trebuchet MS", Verdana, sans-serif;
  --line-height: 1.6;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: wavy;
}

html[data-theme=sunset] {
  --color-bg: #3d1e6d;
  --color-text: #f4a261;
  --color-link: #e76f51;
  --color-link-hover: #f4a261;
  --border: 3px solid #8843f2;
  --border-radius: 15px;
  --box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
  --font-family-heading: Impact, sans-serif;
  --font-family-body: Arial, sans-serif;
  --line-height: 1.5;
  --link-decoration: none;
  --link-decoration-hover: underline;
  --link-decoration-style: double;
}

:root {
  --theme-list: "default,90s-computer,editor,floral,hacker,monochrome,neon,ocean,old-mac,rainbow,sunset";
  --theme-default-name: "Default";
  --theme-90s-computer-name: "90s Computer";
  --theme-editor-name: "Editor";
  --theme-floral-name: "Floral";
  --theme-hacker-name: "Hacker";
  --theme-monochrome-name: "Monochrome";
  --theme-neon-name: "Neon";
  --theme-ocean-name: "Ocean";
  --theme-old-mac-name: "Old Mac";
  --theme-rainbow-name: "Rainbow";
  --theme-sunset-name: "Sunset";
}