:root {
  --mk-bg: #212121;
  --mk-link: #ffffff;
  --mk-link-inline: #9ff8ff;
  --mk-text: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background-color: var(--mk-bg);
  color: var(--mk-text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 23px;
  line-height: 1.3;
}

h3 {
  font-size: 18px;
  line-height: 1.3;
}

a {
  color: #9ff8ff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

p a, li a, .prose a {
  color: var(--mk-link-inline);
}

p a:hover, li a:hover, .prose a:hover {
  text-decoration: underline;
}

strong, b {
  font-weight: 600;
}

.btn {
  align-items: center;
  background: #fff1a1;
  border-radius: 6px;
  border: 1px solid black;
  color: black;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  gap: 6px;
  letter-spacing: 0.2px;
  padding: 7px 16px;
  width: auto;
}
.btn-blue {
  background: #9ff8ff;
}
.btn-dir::after {
  content: '→';
  display: flex;
  margin-left: 6px;
}
.button-group {
  display: flex;
  gap: 16px;
}
.button-group.block {
  flex-direction: column;
}
.button-group.centered {
  justify-content: center;
}
.button-group.block .btn {
  width: 100%;
}

.inline-icon {
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
}
.inline-icon.icon-sm {
  width: 16px;
  height: 16px;
}
.inline-icon.icon-md {
  width: 18px;
}

.content-sections {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 0 20px;
}
.content-sections.max-width-800 {
  max-width: 800px;
  margin: 0 auto;
}

.black-card {
  background: black;
  border: 1px solid #333;
  border-radius: 12px;
}
.black-card.padding {
  padding: 20px;
}

/* Prose content styling */
.prose {
  max-width: 720px;
}

.prose p {
  line-height: 1.7;
  margin-bottom: 1.2em;
}

.prose h2 {
  margin-bottom: 0.8em;
  margin-top: 2em;
}

.prose h3 {
  font-size: 18px;
  margin-bottom: 0.6em;
  margin-top: 1.5em;
}

.prose ul, .prose ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

.prose li {
  line-height: 1.7;
  margin-bottom: 0.4em;
}

.prose strong {
  font-weight: 500;
}

.prose blockquote {
  border-left: 2px solid rgba(159, 248, 255, 0.3);
  font-style: italic;
  margin: 1.5em 0;
  opacity: 0.8;
  padding-left: 1em;
}

code, .agent-prompt-link {
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}
code {
  color: #9fbaff;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.9em;
  padding: 3px 4px;
}
pre {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 0.5rem;
  color: var(--mk-text);
  margin-bottom: 1.5rem;
  overflow-x: auto;
  padding: 1.25rem;
}
pre code {
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  font-size: 0.875rem;
  padding: 0;
}

.agent-prompt-link {
  padding: 3px 12px;
}
.agent-prompt-link::after {
  content: '↑';
  margin-left: 6px;
}

.site-header {
  align-items: center;
  background: #fff;
  color: #212121;
  display: flex;
  justify-content: space-between;
  padding: 12px 30px;
}
.site-header a {
  color: #212121;
}


.logo-text {
  color: var(--mk-link);
  display: block;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.2px;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.logo-text:hover {
  opacity: 0.8;
}

.logo-byline {
  font-size: 12px;
}


/* Navigation */
.nav-links {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: bold;
  gap: 50px;
  justify-content: flex-end;
}

.nav-link {
  color: var(--mk-link);
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.agent-widget {
  margin: 0 auto;
  max-width: 800px;
  padding: 30px 0 0;
  width: 100%;
}
.agent-prompts {
  display: flex;
  margin-top: 16px;
  justify-content: space-between
}

.try-free-pricing {
  align-items: center;
  display: flex;
  gap: 20px;
  font-size: 13px;
  justify-content: center;
}


/* Footer */
.footer {
  padding-bottom: 60px;
  padding-top: 60px;
}

.divider {
  border: none;
  border-top: 1px solid #444;
  margin: 0 0 60px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-row-center {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-link {
  color: var(--mk-link);
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-link:hover {
  opacity: 0.8;
}

.footer-sep {
  opacity: 0.4;
}

.spread {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spread-large {
  gap: 40px;
}

/* Container */
.container {
  margin: 0 auto;
  max-width: 960px;
  padding: 0 20px;
}
.container-large {
  max-width: 1260px;
}

.container-narrow {
  margin: 0 auto;
  max-width: 720px;
  padding: 0 24px;
}

/* Utility classes */
.text-muted {
  opacity: 0.6;
}

.text-teal {
  color: var(--mk-link-inline);
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 16px;
}

.mb-4 {
  margin-bottom: 32px;
}

.py-12 {
  padding-bottom: 96px;
  padding-top: 96px;
}


.page-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}

/* Pages list styling */
.pages-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.page-item {
  border-bottom: 1px solid rgba(159, 248, 255, 0.1);
  padding-bottom: 2rem;
}

.page-item:last-child {
  border-bottom: none;
}

.page-title {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.page-title a {
  color: var(--mk-link);
  transition: opacity 0.2s ease;
}

.page-title a:hover {
  opacity: 0.8;
}

.page-description {
  margin-bottom: 0.8rem;
  opacity: 0.8;
}

.page-meta {
  display: flex;
  font-size: 14px;
  gap: 1.5rem;
  opacity: 0.6;
}

.page-subtitle {
  font-size: 18px;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.page-meta-block {
  border-bottom: 1px solid rgba(159, 248, 255, 0.1);
  display: flex;
  font-size: 14px;
  gap: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.6;
  padding-bottom: 2rem;
}

.steps {
  max-width: 1000px;
  margin: 0 auto;
}
.steps-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.steps-cards ul {
  list-style-position: outside;
  margin: 0;
  padding: 0;
}
.steps-cards > li {
  list-style: none;
  margin: 0;
  padding: 0;
  width: calc(50% - 10px);
}
.steps-cards > li > .inner, .features-highlights li > div {
  display: flex;
  flex-direction: column;
}
.steps-cards > li > .inner {
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}
.features-title, .features-content {
  padding: 20px;
}
.features-title {
  background: #333;
  border-bottom: 1px solid #333;
  text-align: center;
  width: 100%;
}
.features-title h2 {
  color: #a2ffcc;
  font-size: 30px;
  margin: 0;
  padding: 0;
}
.features-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.features-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 20px;
}
.features-content .agent-prompt-link {
  margin: 15px 0 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  body {
    font-size: 15px;
  }

  .container, .container-narrow {
    padding: 0 16px;
  }

  .nav {
    padding-bottom: 16px;
    padding-top: 24px;
  }

  .nav-links {
    gap: 1.5rem;
    justify-content: center;
  }

  .logo-section {
    padding: 32px 16px 32px;
  }

  .py-12 {
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .steps-cards > li {
    width: 100% !important;
  }

  .features-highlights li {
    width: 100% !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 18px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .nav-link {
    font-size: 13px;
  }

  .footer-sep {
    display: none;
  }

  .footer-link {
    display: block;
    margin-bottom: 0.5rem;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-byline {
    font-size: 11px;
  }
}
