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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #0d1b2a;
  color: #e0e1dd;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #3a86ff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: #2a6fdf;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.8rem;
  border-bottom: 1px solid #2d3f54;
  padding-bottom: 0.4rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.15rem;
}

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
ul li, ol li {
  margin-bottom: 0.3rem;
}

blockquote {
  border-left: 4px solid #3a86ff;
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  background: #1b2838;
  border-radius: 0 6px 6px 0;
  color: #778da9;
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid #2d3f54;
  margin: 2.5rem 0;
}

code {
  background: #151f2e;
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.88em;
  color: #06d6a0;
}

pre {
  background: #151f2e;
  border: 1px solid #2d3f54;
  border-radius: 8px;
  padding: 1.25rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background: none;
  padding: 0;
  font-size: 0.85rem;
  color: #e0e1dd;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.92rem;
}
table thead th {
  background: #1b2838;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 2px solid #3a86ff;
}
table tbody td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #2d3f54;
}
table tbody tr:hover {
  background: rgba(58, 134, 255, 0.05);
}

.site-wrapper {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  min-width: 280px;
  background: #1b2838;
  border-right: 1px solid #2d3f54;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
.sidebar-logo {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid #2d3f54;
  margin-bottom: 1rem;
}
.sidebar-logo h1 {
  font-size: 1.3rem;
  margin: 0;
}
.sidebar-logo h1 a {
  color: #fff;
}
.sidebar-logo h1 a:hover {
  text-decoration: none;
  color: #3a86ff;
}
.sidebar-logo .tagline {
  font-size: 0.75rem;
  color: #778da9;
  margin-top: 0.3rem;
}
.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-nav li {
  margin: 0;
}
.sidebar-nav li a {
  display: block;
  padding: 0.55rem 1.5rem;
  color: #778da9;
  font-size: 0.9rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  transition: all 0.2s;
}
.sidebar-nav li a:hover {
  color: #fff;
  background: rgba(58, 134, 255, 0.08);
  border-left-color: #3a86ff;
  text-decoration: none;
}
.sidebar-nav li a.active {
  color: #3a86ff;
  border-left-color: #3a86ff;
  background: rgba(58, 134, 255, 0.1);
}

.main-content {
  flex: 1;
  min-width: 0;
}

.top-bar {
  background: #1b2838;
  border-bottom: 1px solid #2d3f54;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 50;
}
.top-bar .breadcrumb {
  font-size: 0.85rem;
  color: #778da9;
}
.top-bar .breadcrumb a {
  color: #778da9;
}
.top-bar .breadcrumb a:hover {
  color: #3a86ff;
}
.top-bar .breadcrumb .separator {
  margin: 0 0.4rem;
}
.top-bar .badges {
  display: flex;
  gap: 0.5rem;
}
.top-bar .badges img {
  height: 20px;
}

.content-area {
  max-width: 900px;
  padding: 2rem 3rem 4rem;
}

.hero {
  text-align: center;
  padding: 4rem 2rem 3rem;
  background: linear-gradient(135deg, #1b2838 0%, #0d1b2a 100%);
  border-bottom: 1px solid #2d3f54;
  margin-bottom: 2rem;
}
.hero-title {
  font-size: 3rem;
  margin: 0 0 0.75rem;
  background: linear-gradient(135deg, #fff 0%, #3a86ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #778da9;
  max-width: 650px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hero-badges img {
  height: 22px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: #3a86ff;
  color: #fff;
}
.btn-primary:hover {
  background: #2a6fdf;
  color: #fff;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  color: #3a86ff;
  border: 1px solid #3a86ff;
}
.btn-outline:hover {
  background: rgba(58, 134, 255, 0.1);
  text-decoration: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.feature-card {
  background: #1b2838;
  border: 1px solid #2d3f54;
  border-radius: 10px;
  padding: 1.5rem;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: #3a86ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.feature-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.feature-card .icon {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  display: block;
}
.feature-card p {
  font-size: 0.88rem;
  color: #778da9;
  margin: 0;
  line-height: 1.5;
}

.loe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.loe-card {
  background: #1b2838;
  border: 1px solid #2d3f54;
  border-radius: 10px;
  padding: 1.5rem;
  border-top: 3px solid #3a86ff;
}
.loe-card .loe-num {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #3a86ff;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.loe-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.loe-card p {
  font-size: 0.88rem;
  color: #778da9;
  margin: 0 0 0.75rem;
  line-height: 1.5;
}
.loe-card code {
  font-size: 0.8rem;
}

.arch-diagram {
  background: #151f2e;
  border: 1px solid #2d3f54;
  border-radius: 10px;
  padding: 1.5rem;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.8rem;
  overflow-x: auto;
  margin: 2rem 0;
  line-height: 1.5;
  white-space: pre;
  color: #e0e1dd;
}

.principles-list {
  counter-reset: principle;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.principles-list li {
  counter-increment: principle;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #2d3f54;
}
.principles-list li::before {
  content: counter(principle);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #3a86ff;
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
}
.principles-list li strong {
  color: #fff;
}

.quickstart-steps {
  margin: 1.5rem 0;
}
.quickstart-steps .step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.quickstart-steps .step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: rgba(58, 134, 255, 0.15);
  color: #3a86ff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
}
.quickstart-steps .step .step-content {
  flex: 1;
}
.quickstart-steps .step .step-content h4 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}
.quickstart-steps .step .step-content p {
  margin: 0;
  font-size: 0.9rem;
  color: #778da9;
}

.file-tree {
  background: #151f2e;
  border: 1px solid #2d3f54;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  font-size: 0.85rem;
  margin: 1.5rem 0;
  line-height: 1.6;
  overflow-x: auto;
  white-space: pre;
}

.site-footer {
  border-top: 1px solid #2d3f54;
  padding: 2rem 3rem;
  font-size: 0.85rem;
  color: #778da9;
  text-align: center;
}
.site-footer a {
  color: #3a86ff;
}

@media (max-width: 1024px) {
  .sidebar {
    display: none;
  }
  .content-area {
    padding: 1.5rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .loe-grid {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .hero {
    padding: 2rem 1rem;
  }
}
.text-muted {
  color: #778da9;
}

.text-accent {
  color: #3a86ff;
}

.text-success {
  color: #06d6a0;
}

.text-warning {
  color: #ffd166;
}

.text-danger {
  color: #ef476f;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

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