/* NexySync — Marketing Website Styles
   Brand: Dark-first, Electric Cyan accents, Outfit + JetBrains Mono
   Ref: branding/BRAND_GUIDELINES.md */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ── */
:root {
    /* Primary */
    --ns-void: #0A0E1A;
    --ns-cyan: #00E5FF;
    --ns-frost: #EAEEF6;

    /* Surfaces */
    --ns-surface-1: #111827;
    --ns-surface-2: #1E293B;
    --ns-border: #334155;

    /* Text */
    --ns-text-primary: #EAEEF6;
    --ns-text-secondary: #94A3B8;
    --ns-text-muted: #64748B;

    /* Accent */
    --ns-cyan-dim: #0891B2;
    --ns-cyan-glow: rgba(0, 229, 255, 0.15);
    --ns-cyan-glow-strong: rgba(0, 229, 255, 0.25);

    /* Status */
    --ns-success: #10B981;
    --ns-warning: #F59E0B;
    --ns-error: #EF4444;
    --ns-info: #8B5CF6;

    /* Spacing (4px grid) */
    --sp-1: 4px;
    --sp-2: 8px;
    --sp-3: 12px;
    --sp-4: 16px;
    --sp-5: 20px;
    --sp-6: 24px;
    --sp-8: 32px;
    --sp-10: 40px;
    --sp-12: 48px;
    --sp-16: 64px;
    --sp-20: 80px;
    --sp-24: 96px;

    /* Radii */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Animations */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration-fast: 150ms;
    --duration-med: 300ms;
    --duration-slow: 500ms;

    /* Layout */
    --max-width: 1200px;
    --nav-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    color: var(--ns-frost);
    background: var(--ns-void);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

code,
pre,
.mono {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
}

a {
    color: var(--ns-cyan);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease);
}

a:hover {
    color: var(--ns-frost);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--ns-frost);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
}

p {
    color: var(--ns-text-secondary);
    line-height: 1.7;
}

.text-muted {
    color: var(--ns-text-muted);
}

.text-cyan {
    color: var(--ns-cyan);
}

.text-small {
    font-size: 0.875rem;
}

/* ── Layout ── */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--sp-8);
}

.section {
    padding: var(--sp-24) 0;
    position: relative;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--ns-cyan);
    margin-bottom: var(--sp-4);
}

.section-title {
    margin-bottom: var(--sp-6);
}

.section-subtitle {
    color: var(--ns-text-secondary);
    font-size: 1.125rem;
    max-width: 640px;
    margin-bottom: var(--sp-12);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    padding: var(--sp-3) var(--sp-6);
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all var(--duration-fast) var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--ns-cyan);
    color: var(--ns-void);
}

.btn-primary:hover {
    background: #33EBFF;
    color: var(--ns-void);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--ns-frost);
    border: 1px solid var(--ns-border);
}

.btn-secondary:hover {
    border-color: var(--ns-cyan);
    color: var(--ns-cyan);
    transform: translateY(-1px);
}

.btn-lg {
    padding: var(--sp-4) var(--sp-8);
    font-size: 1.125rem;
    border-radius: var(--radius-lg);
}

/* ── Cards ── */
.card {
    background: var(--ns-surface-1);
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-8);
    transition: all var(--duration-med) var(--ease);
}

.card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 32px rgba(0, 229, 255, 0.05);
    transform: translateY(-2px);
}

.card-glass {
    background: rgba(17, 24, 39, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

/* ── Code Blocks ── */
pre.code-block {
    background: var(--ns-surface-1);
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-md);
    padding: var(--sp-6);
    overflow-x: auto;
    margin: 0;
}

pre.code-block code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--ns-text-secondary);
    white-space: pre;
    display: block;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--duration-med) var(--ease);
}

.nav.nav-solid {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ns-border);
}

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

.nav-logo img {
    height: 32px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
}

.nav-links a {
    color: var(--ns-text-secondary);
    font-weight: 500;
    font-size: 0.875rem;
    transition: color var(--duration-fast) var(--ease);
}

.nav-links a:hover {
    color: var(--ns-frost);
}

.nav-cta {
    margin-left: var(--sp-4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--ns-frost);
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--sp-2);
}

/* Mobile nav */
.nav-mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(16px);
    z-index: 999;
    padding: var(--sp-8);
    flex-direction: column;
    gap: var(--sp-6);
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    color: var(--ns-text-secondary);
    font-size: 1.25rem;
    font-weight: 500;
    padding: var(--sp-3) 0;
    border-bottom: 1px solid var(--ns-border);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    margin-bottom: var(--sp-6);
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--ns-text-secondary);
    margin-bottom: var(--sp-10);
    max-width: 560px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    margin-bottom: var(--sp-16);
}

.hero-terminal {
    background: var(--ns-surface-1);
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-lg);
    padding: var(--sp-6);
    max-width: 560px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    line-height: 2;
}

.hero-terminal .line {
    display: flex;
    gap: var(--sp-2);
}

.hero-terminal .agent {
    color: var(--ns-cyan);
    white-space: nowrap;
}

.hero-terminal .arrow {
    color: var(--ns-text-muted);
}

.hero-terminal .msg {
    color: var(--ns-text-secondary);
}

.hero-terminal .success {
    color: var(--ns-success);
}

/* Node network background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.4;
}

.node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--ns-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(0, 229, 255, 0.4);
    animation: pulse 3s var(--ease) infinite;
}

.node::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    transform-origin: left center;
    animation: data-flow 4s linear infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

@keyframes data-flow {
    0% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* ── Problem/Solution ── */
.problem-solution {
    background: var(--ns-surface-1);
    border-top: 1px solid var(--ns-border);
    border-bottom: 1px solid var(--ns-border);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
}

.ps-col h3 {
    margin-bottom: var(--sp-6);
}

.ps-col.problem h3 {
    color: var(--ns-error);
}

.ps-col.solution h3 {
    color: var(--ns-cyan);
}

.ps-col blockquote {
    border-left: 3px solid var(--ns-border);
    padding-left: var(--sp-6);
    margin-bottom: var(--sp-6);
    color: var(--ns-text-secondary);
    font-size: 1.125rem;
    line-height: 1.8;
}

.ps-col.problem blockquote {
    border-color: rgba(239, 68, 68, 0.4);
}

.ps-col.solution blockquote {
    border-color: rgba(0, 229, 255, 0.4);
}

.ps-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.ps-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    color: var(--ns-text-secondary);
    line-height: 1.5;
}

.ps-list li::before {
    content: '—';
    color: var(--ns-text-muted);
    flex-shrink: 0;
}

.ps-col.solution .ps-list li::before {
    content: '✓';
    color: var(--ns-cyan);
}

/* ── Features Grid ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.feature-card {
    padding: var(--sp-8);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--ns-cyan-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-5);
    font-size: 1.25rem;
    color: var(--ns-cyan);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--sp-3);
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ── How It Works ── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-8);
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(33.33% / 2);
    right: calc(33.33% / 2);
    height: 2px;
    background: linear-gradient(90deg, var(--ns-cyan), var(--ns-cyan-dim), var(--ns-cyan));
    z-index: 0;
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ns-surface-1);
    border: 2px solid var(--ns-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--sp-6);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ns-cyan);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.15);
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: var(--sp-3);
}

.step p {
    font-size: 0.9375rem;
    margin-bottom: var(--sp-4);
}

.step .code-block {
    text-align: left;
    font-size: 0.75rem;
    line-height: 1.5;
}

/* ── Security ── */
.security-card {
    background: var(--ns-surface-1);
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-xl);
    padding: var(--sp-12);
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-12);
    align-items: center;
}

.encryption-flow {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8125rem;
    line-height: 2.2;
    color: var(--ns-text-muted);
    background: var(--ns-void);
    border: 1px solid var(--ns-border);
    border-radius: var(--radius-md);
    padding: var(--sp-8);
    white-space: pre;
    overflow-x: auto;
}

.encryption-flow .highlight {
    color: var(--ns-cyan);
}

.encryption-flow .encrypted {
    color: var(--ns-success);
}

.security-points h3 {
    margin-bottom: var(--sp-6);
}

.security-points p {
    margin-bottom: var(--sp-6);
    font-size: 1.0625rem;
    line-height: 1.7;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
}

.security-list li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    color: var(--ns-text-secondary);
}

.security-list li::before {
    content: '🔒';
    font-size: 0.875rem;
}

/* ── Whitepapers ── */
.whitepapers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

.whitepaper-card {
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
}

.whitepaper-card .card-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ns-cyan);
    margin-bottom: var(--sp-4);
}

.whitepaper-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--sp-3);
}

.whitepaper-card p {
    flex: 1;
    margin-bottom: var(--sp-6);
    font-size: 0.9375rem;
}

.whitepaper-card .card-link {
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--sp-2);
}

/* ── Platforms ── */
.platforms-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--sp-12);
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-3);
    opacity: 0.6;
    transition: opacity var(--duration-med) var(--ease);
}

.platform-item:hover {
    opacity: 1;
}

.platform-item .platform-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ns-text-secondary);
}

.platform-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--ns-surface-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ns-frost);
}

.platform-badge {
    font-size: 0.6875rem;
    color: var(--ns-success);
    font-weight: 500;
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    align-items: start;
}

.pricing-card {
    padding: var(--sp-8) var(--sp-6);
    text-align: center;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--ns-cyan);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ns-cyan);
    color: var(--ns-void);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--radius-full);
}

.pricing-coming-soon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ns-surface-2);
    color: var(--ns-warning);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--sp-1) var(--sp-4);
    border-radius: var(--radius-full);
    border: 1px solid var(--ns-warning);
}

.pricing-plan {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--sp-2);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ns-frost);
    margin-bottom: var(--sp-1);
}

.pricing-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ns-text-muted);
}

.pricing-annual {
    font-size: 0.8125rem;
    color: var(--ns-text-muted);
    margin-bottom: var(--sp-8);
}

.pricing-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-8);
    padding: 0 var(--sp-2);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    font-size: 0.875rem;
    color: var(--ns-text-secondary);
}

.pricing-features li::before {
    content: '✓';
    color: var(--ns-cyan);
    font-weight: 700;
    flex-shrink: 0;
}

.pricing-features li.coming-soon {
    opacity: 0.5;
}

.pricing-features li.coming-soon::before {
    content: '○';
    color: var(--ns-text-muted);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* ── CTA Section ── */
.cta-card {
    background: var(--ns-surface-1);
    border: 1px solid var(--ns-cyan);
    border-radius: var(--radius-xl);
    padding: var(--sp-12);
    text-align: center;
    box-shadow: 0 0 48px rgba(0, 229, 255, 0.08);
}

.cta-card h2 {
    margin-bottom: var(--sp-6);
}

.cta-steps {
    display: inline-flex;
    flex-direction: column;
    gap: var(--sp-3);
    text-align: left;
    margin-bottom: var(--sp-8);
}

.cta-steps li {
    font-size: 1.0625rem;
    color: var(--ns-text-secondary);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
}

.cta-steps .step-num {
    background: var(--ns-cyan-glow);
    color: var(--ns-cyan);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Footer ── */
.footer {
    background: var(--ns-surface-1);
    border-top: 1px solid var(--ns-border);
    padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: var(--sp-12);
    margin-bottom: var(--sp-12);
}

.footer-brand img {
    height: 28px;
    margin-bottom: var(--sp-4);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--ns-text-muted);
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ns-text-muted);
    margin-bottom: var(--sp-4);
}

.footer-col a {
    display: block;
    color: var(--ns-text-secondary);
    font-size: 0.875rem;
    padding: var(--sp-1) 0;
}

.footer-col a:hover {
    color: var(--ns-cyan);
}

.footer-bottom {
    border-top: 1px solid var(--ns-border);
    padding-top: var(--sp-6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--ns-text-muted);
}

.footer-legal {
    display: flex;
    gap: var(--sp-6);
}

.footer-legal a {
    color: var(--ns-text-muted);
    font-size: 0.8125rem;
}

/* ── Scroll reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity var(--duration-slow) var(--ease),
        transform var(--duration-slow) var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {

    .features-grid,
    .whitepapers-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: 1fr;
        gap: var(--sp-12);
    }

    .steps::before {
        display: none;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }

    .container {
        padding: 0 var(--sp-5);
    }

    .section {
        padding: var(--sp-16) 0;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .ps-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .features-grid,
    .whitepapers-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .platforms-strip {
        gap: var(--sp-6);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--sp-8);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--sp-4);
        text-align: center;
    }

    .encryption-flow {
        font-size: 0.6875rem;
    }

    .cta-card {
        padding: var(--sp-8);
    }
}

/* ── Doc pages ── */
.doc-page {
    padding-top: calc(var(--nav-height) + var(--sp-12));
    padding-bottom: var(--sp-16);
    min-height: 100vh;
}

.doc-content {
    max-width: 800px;
    margin: 0 auto;
}

.doc-content h1 {
    margin-bottom: var(--sp-6);
}

.doc-content h2 {
    margin-top: var(--sp-12);
    margin-bottom: var(--sp-4);
    padding-top: var(--sp-6);
    border-top: 1px solid var(--ns-border);
}

.doc-content h3 {
    margin-top: var(--sp-8);
    margin-bottom: var(--sp-3);
    font-size: 1.25rem;
}

.doc-content p {
    margin-bottom: var(--sp-4);
}

.doc-content ul,
.doc-content ol {
    margin-bottom: var(--sp-4);
    padding-left: var(--sp-6);
}

.doc-content ul li {
    list-style: disc;
    color: var(--ns-text-secondary);
    margin-bottom: var(--sp-2);
}

.doc-content ol li {
    list-style: decimal;
    color: var(--ns-text-secondary);
    margin-bottom: var(--sp-2);
}

.doc-content .code-block {
    margin-bottom: var(--sp-6);
}

.doc-content .info-box {
    background: var(--ns-cyan-glow);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: var(--radius-md);
    padding: var(--sp-5);
    margin-bottom: var(--sp-6);
}

.doc-content .info-box p {
    color: var(--ns-frost);
    margin: 0;
}

.doc-breadcrumb {
    margin-bottom: var(--sp-8);
    font-size: 0.875rem;
}

.doc-breadcrumb a {
    color: var(--ns-text-muted);
}

.doc-breadcrumb span {
    color: var(--ns-text-muted);
    margin: 0 var(--sp-2);
}