@layer reset,base,components,utilities;@layer reset{*,
  *::before,
  *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
  }

  body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  img,
  svg {
    display: block;
    max-width: 100%;
  }

  a {
    color: inherit;
    text-decoration: none;
  }

  ul,
  ol {
    list-style: none;
  }

  button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
  }

  table {
    border-collapse: collapse;
    width: 100%;
  }
}@layer base{:root {
    
    --color-canvas: oklch(0.97 0.01 90);
    --color-surface: oklch(1.0 0 0);
    --color-surface-raised: oklch(0.99 0.005 90);

    
    --color-ink: oklch(0.2 0.04 260);
    --color-ink-muted: oklch(0.45 0.03 260);
    --color-ink-subtle: oklch(0.6 0.02 260);

    
    --color-teal: oklch(0.55 0.15 195);
    --color-teal-light: oklch(0.92 0.04 195);
    --color-orange: oklch(0.7 0.17 55);
    --color-orange-light: oklch(0.94 0.04 55);
    --color-yellow: oklch(0.85 0.15 85);

    
    --color-navy: oklch(0.2 0.04 260);
    --color-navy-light: oklch(0.25 0.04 260);

    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    
    --font-sans: "Inter", system-ui, -apple-system, sans-serif;
    --font-mono: "JetBrains Mono", ui-monospace, monospace;

    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;

    
    --shadow-sm: 0 1px 2px oklch(0.2 0.04 260 / 0.05);
    --shadow-md: 0 4px 6px -1px oklch(0.2 0.04 260 / 0.07), 0 2px 4px -2px oklch(0.2 0.04 260 / 0.05);
    --shadow-lg: 0 10px 15px -3px oklch(0.2 0.04 260 / 0.08), 0 4px 6px -4px oklch(0.2 0.04 260 / 0.04);

    
    --max-width: 72rem;
    --max-width-prose: 48rem;
    --sidebar-width: 16rem;

    
    --navbar-height: 4rem;
  }

  body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    color: var(--color-ink);
    background-color: var(--color-canvas);
  }
}@layer components{.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 0.625rem 1.25rem;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-md);
    transition: background-color 0.15s, color 0.15s, box-shadow 0.15s;
    white-space: nowrap;
  }

  .btn--primary {
    background-color: var(--color-navy);
    color: var(--color-surface);
  }

  .btn--primary:hover {
    background-color: var(--color-navy-light);
    box-shadow: var(--shadow-md);
  }

  .btn--outline {
    background-color: transparent;
    color: var(--color-navy);
    box-shadow: inset 0 0 0 1.5px var(--color-navy);
  }

  .btn--outline:hover {
    background-color: var(--color-navy);
    color: var(--color-surface);
  }

  .btn--lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--text-base);
    border-radius: var(--radius-lg);
  }

  
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    background-color: oklch(1.0 0 0 / 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid oklch(0.2 0.04 260 / 0.08);
    z-index: 100;
  }

  .navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--space-xl);
  }

  .navbar__logo {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.02em;
  }

  .navbar__links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
  }

  .navbar__link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-ink-muted);
    transition: color 0.15s;
  }

  .navbar__link:hover {
    color: var(--color-ink);
  }

  .navbar__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 2px 0;
  }

  .navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-ink);
    border-radius: 1px;
    transition: transform 0.2s, opacity 0.2s;
  }

  
  .hero {
    display: flex;
    align-items: center;
    min-height: calc(100vh - var(--navbar-height));
    padding: calc(var(--navbar-height) + var(--space-3xl)) var(--space-xl) var(--space-3xl);
    background-color: var(--color-canvas);
  }

  .hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
  }

  .hero__badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-teal);
    background-color: var(--color-teal-light);
    border-radius: 100px;
    margin-bottom: var(--space-lg);
  }

  .hero__title {
    font-size: var(--text-5xl);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-ink);
    margin-bottom: var(--space-lg);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-muted);
    line-height: 1.6;
    max-width: 32rem;
    margin-bottom: var(--space-2xl);
  }

  .hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
  }

  .hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero__visual img,
  .hero__visual svg {
    width: 100%;
    max-width: 540px;
    height: auto;
  }

  
  .features {
    padding: var(--space-4xl) var(--space-xl);
    background-color: var(--color-canvas);
  }

  .features__container {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .features__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
  }

  .features__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
  }

  .features__subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-muted);
    max-width: 36rem;
    margin: 0 auto;
  }

  .features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .feature-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid oklch(0.2 0.04 260 / 0.06);
    transition: box-shadow 0.2s, transform 0.2s;
  }

  .feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
  }

  .feature-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
    font-size: var(--text-xl);
  }

  .feature-card__icon--teal {
    background-color: var(--color-teal-light);
    color: var(--color-teal);
  }

  .feature-card__icon--orange {
    background-color: var(--color-orange-light);
    color: var(--color-orange);
  }

  .feature-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
  }

  .feature-card__desc {
    font-size: var(--text-sm);
    color: var(--color-ink-muted);
    line-height: 1.6;
  }

  
  .community {
    padding: var(--space-4xl) var(--space-xl);
    background-color: var(--color-surface-raised);
  }

  .community__container {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .community__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
  }

  .community__title {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-bottom: var(--space-md);
  }

  .community__subtitle {
    font-size: var(--text-lg);
    color: var(--color-ink-muted);
  }

  .community__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }

  .community-card {
    background-color: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid oklch(0.2 0.04 260 / 0.06);
    transition: box-shadow 0.2s;
  }

  .community-card:hover {
    box-shadow: var(--shadow-md);
  }

  .community-card__title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-ink);
    margin-bottom: var(--space-sm);
  }

  .community-card__desc {
    font-size: var(--text-sm);
    color: var(--color-ink-muted);
    margin-bottom: var(--space-lg);
  }

  .community-card__link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-teal);
    transition: color 0.15s;
  }

  .community-card__link:hover {
    color: var(--color-ink);
  }

  
  .footer {
    background-color: var(--color-navy);
    color: oklch(0.85 0.02 260);
    padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  }

  .footer__container {
    max-width: var(--max-width);
    margin: 0 auto;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
  }

  .footer__heading {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: oklch(0.7 0.02 260);
    margin-bottom: var(--space-lg);
  }

  .footer__list li {
    margin-bottom: var(--space-sm);
  }

  .footer__list a {
    font-size: var(--text-sm);
    color: oklch(0.75 0.02 260);
    transition: color 0.15s;
  }

  .footer__list a:hover {
    color: var(--color-surface);
  }

  .footer__bottom {
    border-top: 1px solid oklch(0.35 0.03 260);
    padding-top: var(--space-xl);
    text-align: center;
  }

  .footer__bottom p {
    font-size: var(--text-sm);
    color: oklch(0.55 0.02 260);
  }

  .footer__bottom a {
    color: oklch(0.7 0.02 260);
    transition: color 0.15s;
  }

  .footer__bottom a:hover {
    color: var(--color-surface);
  }

  
  .docs-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: calc(var(--navbar-height) + var(--space-2xl)) var(--space-xl) var(--space-3xl);
    gap: var(--space-3xl);
    min-height: 100vh;
  }

  
  .docs-sidebar {
    position: sticky;
    top: calc(var(--navbar-height) + var(--space-2xl));
    height: fit-content;
    max-height: calc(100vh - var(--navbar-height) - var(--space-3xl));
    overflow-y: auto;
    padding-right: var(--space-lg);
  }

  .docs-sidebar__title {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-ink-subtle);
    margin-bottom: var(--space-md);
  }

  .docs-sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .docs-sidebar__link {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    color: var(--color-ink-muted);
    border-radius: var(--radius-sm);
    transition: color 0.15s, background-color 0.15s;
  }

  .docs-sidebar__link:hover {
    color: var(--color-ink);
    background-color: oklch(0.2 0.04 260 / 0.04);
  }

  .docs-sidebar__link--active {
    color: var(--color-teal);
    background-color: var(--color-teal-light);
    font-weight: 500;
  }

  
  .docs-sidebar__overlay {
    display: none;
  }

  .docs-sidebar__close {
    display: none;
  }

  
  .docs-content {
    max-width: var(--max-width-prose);
    min-width: 0;
  }

  .docs-content h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-ink);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid oklch(0.2 0.04 260 / 0.08);
  }

  .docs-content h2 {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-ink);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-lg);
  }

  .docs-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--color-ink);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
  }

  .docs-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-ink);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
  }

  .docs-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
  }

  .docs-content a {
    color: var(--color-teal);
    text-decoration: underline;
    text-decoration-color: oklch(0.55 0.15 195 / 0.3);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.15s;
  }

  .docs-content a:hover {
    text-decoration-color: var(--color-teal);
  }

  .docs-content strong {
    font-weight: 600;
    color: var(--color-ink);
  }

  .docs-content ul,
  .docs-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
  }

  .docs-content ul {
    list-style: disc;
  }

  .docs-content ol {
    list-style: decimal;
  }

  .docs-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
  }

  .docs-content li > ul,
  .docs-content li > ol {
    margin-top: var(--space-sm);
    margin-bottom: 0;
  }

  .docs-content code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background-color: oklch(0.2 0.04 260 / 0.06);
    padding: 0.15em 0.4em;
    border-radius: var(--radius-sm);
  }

  .docs-content pre {
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--color-navy);
    color: oklch(0.9 0.01 260);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    font-size: var(--text-sm);
    line-height: 1.6;
  }

  .docs-content pre code {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    color: inherit;
    font-size: inherit;
  }

  .docs-content table {
    margin-bottom: var(--space-lg);
    border: 1px solid oklch(0.2 0.04 260 / 0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    font-size: var(--text-sm);
  }

  .docs-content th {
    background-color: oklch(0.2 0.04 260 / 0.04);
    font-weight: 600;
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid oklch(0.2 0.04 260 / 0.1);
  }

  .docs-content td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid oklch(0.2 0.04 260 / 0.06);
  }

  .docs-content tr:last-child td {
    border-bottom: none;
  }

  .docs-content blockquote {
    border-left: 3px solid var(--color-teal);
    padding: var(--space-md) var(--space-lg);
    margin-bottom: var(--space-lg);
    background-color: var(--color-teal-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
  }

  .docs-content blockquote p:last-child {
    margin-bottom: 0;
  }

  .docs-content img {
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
  }

  .docs-content .mermaid {
    margin-bottom: var(--space-lg);
    text-align: center;
    background-color: var(--color-surface);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    border: 1px solid oklch(0.2 0.04 260 / 0.06);
  }

  
  .callout {
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border-radius: var(--radius-md);
    border-left: 3px solid;
  }

  .callout--info {
    background-color: var(--color-teal-light);
    border-color: var(--color-teal);
  }

  .callout--warning {
    background-color: var(--color-orange-light);
    border-color: var(--color-orange);
  }

  .callout__title {
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
  }

  .callout--info .callout__title {
    color: var(--color-teal);
  }

  .callout--warning .callout__title {
    color: var(--color-orange);
  }

  .callout p:last-child {
    margin-bottom: 0;
  }

  
  .docs-list__item {
    padding: var(--space-lg) 0;
    border-bottom: 1px solid oklch(0.2 0.04 260 / 0.06);
  }

  .docs-list__item:last-child {
    border-bottom: none;
  }

  .docs-list__link {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-teal);
    transition: color 0.15s;
  }

  .docs-list__link:hover {
    color: var(--color-ink);
  }

  
  .docs-menu-toggle {
    display: none;
  }

  
  .navbar__menu-open .navbar__links {
    display: flex;
  }
}@layer utilities{.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
}@media(max-width:1024px){.hero__container{grid-template-columns:1fr;text-align:center}.hero__subtitle{margin-left:auto;margin-right:auto}.hero__actions{justify-content:center}.hero__visual{order:-1}.hero__visual img,.hero__visual svg{max-width:400px}.features__grid{grid-template-columns:repeat(2,1fr)}.community__grid{grid-template-columns:repeat(2,1fr)}.footer__grid{grid-template-columns:repeat(2,1fr)}.docs-layout{grid-template-columns:1fr;padding-top:calc(var(--navbar-height) + var(--space-xl))}.docs-sidebar{position:fixed;top:0;left:0;bottom:0;width:18rem;max-height:100vh;background-color:var(--color-surface);z-index:200;padding:var(--space-xl);padding-top:calc(var(--navbar-height) + var(--space-xl));transform:translateX(-100%);transition:transform .25s ease;box-shadow:var(--shadow-lg)}.docs-sidebar--open{transform:translateX(0)}.docs-sidebar__overlay{display:none;position:fixed;inset:0;background-color:oklch(.2 .04 260/.5);z-index:199}.docs-sidebar--open~.docs-sidebar__overlay{display:block}.docs-sidebar__close{display:block;position:absolute;top:var(--space-lg);right:var(--space-lg);padding:var(--space-sm);color:var(--color-ink-muted)}.docs-menu-toggle{display:inline-flex;align-items:center;gap:var(--space-sm);padding:var(--space-sm)var(--space-md);font-size:var(--text-sm);font-weight:500;color:var(--color-ink-muted);background-color:var(--color-surface);border:1px solid oklch(.2 .04 260/.1);border-radius:var(--radius-md);margin-bottom:var(--space-xl)}.navbar__toggle{display:flex}.navbar__links{display:none;position:absolute;top:var(--navbar-height);left:0;right:0;flex-direction:column;padding:var(--space-lg)var(--space-xl);background-color:var(--color-surface);border-bottom:1px solid oklch(.2 .04 260/.08);box-shadow:var(--shadow-md)}.navbar__menu-open .navbar__links{display:flex}}@media(max-width:768px){:root{--text-5xl:2.25rem;--text-4xl:1.875rem;--text-3xl:1.5rem}.features__grid{grid-template-columns:1fr}.community__grid{grid-template-columns:1fr}.footer__grid{grid-template-columns:1fr;gap:var(--space-2xl)}.hero{min-height:auto;padding-top:calc(var(--navbar-height) + var(--space-2xl));padding-bottom:var(--space-2xl)}}@media(max-width:480px){.hero__actions{flex-direction:column;align-items:center}.btn--lg{width:100%;justify-content:center}.docs-content pre{border-radius:0;margin-left:calc(-1 * var(--space-xl));margin-right:calc(-1 * var(--space-xl));padding-left:var(--space-xl);padding-right:var(--space-xl)}}