/* Make Studio Theme Styles */


/* CSS Custom Properties */

    :root {
      --brand: #3f6fd4;
      --on-brand: #ffffff;
      --base: #0f0f0f;
      --base-muted: #000000;
      --base-alt: #40404f;
      --panel: #F1F5F9;
      --border: #26262c;
      --fg: #ededed;
      --fg-muted: #818892;
      --fg-alt: #f7f7f7;
      --accent-1: #981aff;
      --accent-2: #ff1ae0;
      --gray-100: #F1F5F9;
      --gray-300: #CBD5E1;
      --gray-500: #64748B;
      --gray-700: #334155;
      --gray-900: #0F172A;
    }

/* Typography */

    /* Headlines */
    
    .heading-xl {
      font-family: Noto Sans Display;
      font-size: 72px;
      font-style: normal;
      font-weight: 700;
      line-height: 82px;
      letter-spacing: 0px;
    }

    .heading-lg {
      font-family: Noto Sans Display;
      font-size: 48px;
      font-style: normal;
      font-weight: 700;
      line-height: 56px;
      letter-spacing: 0px;
    }

    .heading-md {
      font-family: Noto Sans Display;
      font-size: 32px;
      font-style: normal;
      font-weight: 700;
      line-height: 45px;
      letter-spacing: 0px;
    }

    .heading-sm {
      font-family: Noto Sans Display;
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 33px;
      letter-spacing: 0px;
    }

    .heading-xs {
      font-family: Noto Sans Display;
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 24px;
      letter-spacing: 0px;
    }

    /* Copy */
    
    .body-lg {
      font-family: Noto Sans;
      font-size: 24px;
      font-style: normal;
      font-weight: 400;
      line-height: 40px;
      letter-spacing: 0px;
    }

    .body-md {
      font-family: Noto Sans;
      font-size: 18px;
      font-style: normal;
      font-weight: 400;
      line-height: 31px;
      letter-spacing: 0px;
    }

    .body-sm {
      font-family: Noto Sans;
      font-size: 15px;
      font-style: normal;
      font-weight: 400;
      line-height: 40px;
      letter-spacing: 0px;
    }

    @media (max-width: 768px) {
      .heading-xl { font-size: 46px; line-height: 56px; }
      .heading-lg { font-size: 34px; line-height: 46px; }
      .heading-md { font-size: 26px; line-height: 38px; }
      .body-lg { font-size: 20px; line-height: 36px; }
      .body-sm { font-size: 13px; line-height: 24px; }
    }

/* Prose Styles */
.prose h1 {
  font-family: Noto Sans Display;
  font-size: 72px;
  font-weight: 700;
  line-height: 82px;
  letter-spacing: 0px;
  margin-bottom: 1.5rem;
}

.prose h2 {
  font-family: Noto Sans Display;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose h3 {
  font-family: Noto Sans Display;
  font-size: 32px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: 0px;
  margin-bottom: 1rem;
}

.prose h4 {
  font-family: Noto Sans Display;
  font-size: 24px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0px;
  margin-bottom: 0.75rem;
}

.prose h5 {
  font-family: Noto Sans Display;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose h6 {
  font-family: Noto Sans Display;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.prose p {
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ul {
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ol {
  font-family: Noto Sans;
  font-size: 18px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0px;
  margin-bottom: 1.25rem;
}

.prose ul, .prose ol {
  padding-left: 1.5rem;
}

.prose ul { list-style-type: disc; }
.prose ol { list-style-type: decimal; }

.prose li {
  margin-bottom: 0.5rem;
}

.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol {
  margin-left: 1.5rem;
  margin-bottom: 0;
}

.prose a {
  color: accent;
  text-decoration: underline;
  transition: color 0.15s ease;
}

.prose a:hover {
  color: primary;
  text-decoration: underline;
}

.prose blockquote {
  border-left: 3px solid currentColor;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.85;
}

.prose pre {
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
  overflow-x: auto;
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose pre code {
  white-space: pre-wrap !important;
  word-wrap: break-word !important;
}

.prose code:not(pre code) {
  background: rgba(0, 0, 0, 0.2);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9em;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Noto Sans;
  font-weight: 900;
  border-style: solid;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  box-sizing: border-box;
  text-decoration: none;
}

.btn-lg {
  font-size: 18px;
  letter-spacing: 0px;
  border-radius: 8px;
  padding: 15px 26px 15px 26px;
}

.btn-md {
  font-size: 16px;
  letter-spacing: 0px;
  border-radius: 6px;
  padding: 12px 27px 12px 27px;
}

.btn-sm {
  font-size: 14px;
  letter-spacing: 0px;
  border-radius: 4px;
  padding: 10px 19px 10px 19px;
}

.btn-primary {
  background-color: #3f6fd4;
  color: #ffffff;
  border-color: transparent;
  border-width: 0px;
}

.btn-primary:hover {
  background-color: #2656bb;
}

.btn-secondary {
  background-color: #26262c;
  color: #ededed;
  border-color: transparent;
  border-width: 0px;
}

.btn-secondary:hover {
  background-color: #0d0d13;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #40404f;
  border-width: 1px;
}

.btn-ghost {
  background-color: transparent;
  color: #ededed;
  border-color: transparent;
  border-width: 0px;
}

.btn-ghost:hover {
  background-color: rgba(255,255,255,0.05);
}


