:root {
    --side-padding: 220px;
}

/* NAVBAR BASE */
.nav {
    display: flex;
    align-items: stretch;
    height: 64px;
    border-top: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
    background: #000000;
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 50;
    font-family: 'JetBrains Mono', monospace;
    width: 100%;
}

.nav-content {
    display: flex;
    flex: 1;
    align-items: stretch;
}

.nav-social-wrap {
    display: flex;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
    margin-right: 24px;
    align-self: center;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #F9FAFB;
    border-radius: 10px;
    position: relative;
    transform-origin: 1px;
}

.border-none {
    border-right: none !important;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #1F2937;
    text-decoration: none;
}

.nav-logo {
    padding: 0 24px;
    gap: 12px;
}

.logo-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.version {
    font-size: 16px;
    color: #F9FAFB;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.nav-empty-left {
    flex-grow: 1;
}

.nav-link {
    padding: 0 28px;
    text-decoration: none;
    color: #C7CEDA;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    font-family: 'JetBrains Mono', monospace;
}

.nav-link:hover {
    color: white;
}


.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF7F1F;
}

.nav-empty-right {
    flex-grow: 1;
}

/* Social container */
.nav-social {
    padding: 0 20px;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    color: #fff;
}



/* .nav-social .icon {
    height: 18px;
    width: 18px;
    object-fit: contain;

} */



.social-count {
    font-size: 12px;
    font-weight: 400;
    color: #E5E7EB;
    /* Improved contrast from #9CA3AF */
}

/* INSTALL BUTTON */
.install {
    background: #FF7F1F;
    color: #fff;
    border: none;
    padding: 0 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-right: none;
    height: 100%;
    font-family: 'JetBrains Mono', monospace;
}

.install-btn {
    text-decoration: none;
    color: inherit;
}

.install:hover {
    background: #e66a15;
}

/* HERO */
.hero {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 0px var(--side-padding);
    overflow: hidden;
    height: calc(100vh - 64px);
    align-items: center;
}

/* LEFT */
.hero-left {
    max-width: 680px;
    z-index: 2;
}

.status {
    color: #FF7F1F;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 400;
}

.double-pulse-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.pulse-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pulse-outer {
    width: 85%;
    height: 85%;
    border-radius: 50%;
    background-color: #4e9267;
}

/* .status span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
} */

h1 {
    font-family: 'Inter', sans-serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2%;
    color: #F9FAFB;
}

h2 span {
    display: block;
}

.hero h1 span {
    color: #9CA3AF;
}

.description-wrap {
    border-left: 3px solid #E85D04;
    padding-left: 16px;
    margin-bottom: 20px;
}

.description {
    color: #8B93A7;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    max-width: 600px;
}

/* FEATURES */
.features {
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #8B93A7;
    font-size: 16px;
    font-weight: 400;

}

.features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #ff6a00;
}

/* BUTTONS */
.actions {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: #FF7F1F;
    border: none;
    padding: 0 28px;
    height: 54px;
    color: #FFFFFF;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-primary:hover {
    background: #e66a15;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #FFFFFF;
    padding: 0 28px;
    height: 54px;
    color: #FFFFFF;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.btn-secondary:hover {
    color: #fff;
    border-color: #9CA3AF;
}

/* RIGHT SIDE */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    padding-top: 40px;
}

/* CARD */
.card {
    border: 1px solid #1F2937;
    background: #050505;
    max-width: 420px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.demo-card {
    border: 1px solid #1F2937;
    overflow: hidden;
    position: relative;
    padding: 30px;
    border-right: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-header {
    padding: 14px 20px;
    border-bottom: 1px solid #1F2937;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    background: rgba(15, 15, 15, 0.8);
}

.default-header {
    color: #ff6a00;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #9ca3af;
}

.terminal-header .dots {
    display: flex;
    gap: 6px;
    position: absolute;
    left: 20px;
}

.terminal-header .dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.terminal-header .dots span.green {
    background: #22c55e;
}

.terminal-header .dots span.yellow {
    background: #eab308;
}

.terminal-header .dots span.red {
    background: #ef4444;
}

.card-body {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: #9ca3af;
    background: #050505;
}

.code-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.code-prefix {
    color: #fff;
}

.copy-icon {
    width: 16px;
    height: 16px;
    color: #9CA3AF;
    cursor: pointer;
}

.copy-icon:hover {
    color: #fff;
}

.hero-video-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    opacity: 1;
}

.component-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.features-section {
    position: relative;
    padding: 0 var(--side-padding);
    display: flow-root;
    /* Contrains child margins so vertical lines touch the bottom */
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1F2937;
    z-index: 0;
    pointer-events: none;
}

.features-section::before {
    left: var(--side-padding);
}

.features-section::after {
    right: var(--side-padding);
}

/* 
.features-section+.features-section {
    padding-top: 0;
    border-top: none;
} */

/* BADGE */
.badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FF7F1F;
    color: #000000;
    font-size: 12px;
    padding: 12px 32px 14px;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
    z-index: 20;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
}

/* HEADER */
.features-header {
    padding: 63px 30px 40px;
    position: relative;
    /* border-bottom: 1px solid #1F2937; */
}

.usecase-header {
    border-bottom: 1px solid #1F2937;
}

.how-it-works-header {
    border-bottom: 1px solid #1F2937;
}

.differentiation-header {
    border-top: none;
}

.features-header::before,
.features-header::after {
    content: '';
    position: absolute;
    top: -5.5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 20;
}

/* .features-header::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
} */
/* 
.features-header::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
} */

.mini {
    color: #FF7F1F;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    margin-bottom: 9px;
}

.features-header h2,
.features-header h3 {
    font-size: 42px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -1.5%;
    color: #F9FAFB;
}

.features-header h2 span,
.features-header h3 span {
    color: #9CA3AF;
    display: block;
    margin-top: 4px;
}

/* POINTS */
.points {
    list-style: none;
    padding: 0;
}

.check-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.points li {
    margin-bottom: 10px;
    color: #8B93A7;
    position: relative;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* .points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #22c55e;
} */

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* No outer borders, using section side borders and badge-border */
}

/* CARD */
.feature-card {
    padding: 30px;
    border-right: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
}

.feature-card:nth-child(2n) {
    border-right: none;
    /* Last column */
}

.feature-card:nth-last-child(-n+2) {
    border-bottom: none;
    /* Last row (2 columns) */
}

/* HOVER */
.feature-card:hover {
    background: #0B0D10;
}

/* NUMBER */
.num {
    display: inline-block;
    border: 1px solid #374151;
    padding: 8px 8px;
    font-size: 16px;
    color: #9CA3AF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.feature-card:hover .num {
    color: #E85D04;
    border-color: #E85D04;
}

/* TOP */
.feature-card .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    width: 24px;
    height: 24px;

}

.feature-card:hover .feature-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
}

/* TITLE */
.feature-card h3 {
    margin: 28px 0 0 0;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #F9FAFB;
}

.feature-card:hover h3 {
    color: #FF7F1F;
}



/* TEXT */
.feature-card p {
    color: #8B93A7;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    max-width: 450px;
    line-height: 1.5;
}

/* HIGHLIGHT */
.highlight {
    display: block;
    margin-top: 38px;
    color: #4ADE80;
    font-size: 12px;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
}


/* HEADER */
.header h2 {
    font-size: 40px;
    margin-bottom: 10px;
    margin-top: 0;
}

.header p {
    color: #9ca3af;
    max-width: 700px;
}

/* LAYOUT */
.container {
    display: grid;
    grid-template-columns: 400px 1fr;
    /* margin-top: 40px; */
    border-left: 1px solid #1F2937;
    border-right: 1px solid #1F2937;
    /* border-bottom removed to prevent doubling with next badge */
}

/* LEFT */
.left {
    border-right: 1px solid #1F2937;
}

.item {
    padding: 30px;
    border-bottom: 1px solid #1F2937;
}

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

.item.active {
    background: none;
    border-left: none;
}

/* 
.label {
    font-size: 12px;
    color: #9CA3AF;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
} */

.item p {
    margin-top: 6px;
    color: #9CA3AF;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* RIGHT */
.right {
    padding: 30px;
}

.right h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #F9FAFB;
}

.desc {
    color: #8B93A7;
    margin-bottom: 20px;
    max-width: 920px;
    line-height: 1.5;
}

/* LIST */
.right ul {
    list-style: none;
    padding: 0;
    line-height: 1.5;
}

.right li {
    margin-bottom: 10px;
    position: relative;
    color: #8B93A7;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}



.usecase-header {
    font-size: 42px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: -1.5%;

}


.usecase-header span {
    color: #D1D5DB;
}

.features-header p.desc {
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    margin-bottom: 0;
    margin-top: 6px;
    max-width: 920px;
    color: #8B93A7;
}

.right p {
    color: #8B93A7;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}


/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #1F2937;
}

/* CARD */

/* REMOVE RIGHT BORDER */
.card:nth-child(2n) {
    border-right: none;
}

/* TAG */
.demo-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 16px;
    border: 1px solid #1F2937;
    padding: 4px 8px;
    color: #D1D5DB;
    font-family: 'JetBrains Mono', monospace;
}

/* PREVIEW AREA */
.preview {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BOX (card 1) */
.box {
    width: 80px;
    height: 80px;
    border: 1px solid #1F2937;
    border-bottom: 3px solid #ff6a00;
}

/* SQUARE (card 2) */
.square {
    width: 80px;
    height: 80px;
    border: 1px solid #1F2937;
}

/* LAYERS (card 3) */
.layers {
    width: 120px;
    height: 80px;
}

.layers div {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #1F2937;
}

.layers div:first-child {
    top: -8px;
    left: -8px;
    opacity: 0.5;
}

/* BUTTON (card 4) */
.button {
    padding: 10px 16px;
    border: 1px solid #1F2937;
    font-size: 12px;
}

/* TITLE */
.demo-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}



/* TEXT */
.demo-card p {
    color: #D1D5DB;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}



.demo-card:hover {
    background: #0B0D10;
}

.demo-card:hover h3 {
    color: #FF7F1F;
}

.demo-card:hover .tag {
    color: #E85D04;
    border-color: #E85D04;
}

.grid-section {
    border-top: 1px solid #1F2937;
    border-left: 1px solid #1F2937;
    background: #000;
}

/* GRID */
.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

/* CARD */
.preview-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-right: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
}

.preview-card:nth-child(3n) {
    border-right: none;
}

.preview-card:nth-child(n+4) {
    border-bottom: none;
}

/* ICON BOX */
.preview-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #15191E;
    border: 1px solid #1F2937;
    color: #9CA3AF;
}

.preview-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.5px;
    font-weight: 400;
}

/* ACTIVE STATE */
.preview-card:hover .preview-icon-box {
    border: 1px solid #FF7F1F;
    color: #FF7F1F;
}


/* HOVER */
.preview-card:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* FOOTER */
.footer {
    padding: 42px 30px;
    text-align: right;
    border-top: 1px solid #1F2937;
}

.footer a {
    color: #FF7F1F;
    text-decoration: none;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
}

/* COMPARISON SECTION */
.comparison-container {
    /* border removed to prevent doubling with table borders */
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'JetBrains Mono', monospace;
}

.comparison-table th,
.comparison-table td {
    padding: 24px;
    text-align: left;
    border: 1px solid #1F2937;
    font-size: 14px;
}

.comparison-table th {
    color: #94A3B8;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    background: #0B0D10;

}

.comparison-table td {
    color: #F9FAFB;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.comparison-table td:first-child {
    color: #F9FAFB;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.comparison-table td:nth-child(2) {
    background-color: #0B0D10;
}

.comparison-table td:nth-child(3),
.comparison-table td:nth-child(4),
.comparison-table td:nth-child(5) {
    color: #94A3B8;
}

.comparison-table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.text-dim {
    color: #9CA3AF !important;
}

.text-white {
    color: #fff !important;
}

.comparison-content {
    vertical-align: middle;
}

.comparison-content img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

/* ICONS (using unicode or simple shapes) */
.icon-check::before {
    content: '✔';
    color: #22c55e;
    margin-right: 12px;
    border: 1px solid #22c55e;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
}

.icon-cross::before {
    content: '✕';
    color: #ef4444;
    margin-right: 12px;
    font-size: 14px;
}

.icon-warn::before {
    content: '⚠';
    color: #eab308;
    margin-right: 12px;
    font-size: 14px;
}

/* TAKEAWAY BOX */
.takeaway-box {
    margin: 28px;
    border: 1px solid #FF7F1F;
    padding: 40px;
    position: relative;
    background: #000;
}

.takeaway-header {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lightbulb-box {
    width: 38px;
    height: 38px;
    border: 1px solid #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.lightbulb {
    width: 24px;
    height: 24px;
}

.takeaway-mini {
    color: #FF7F1F;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 400;
}

.takeaway-title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #F9FAFB;
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: -1px;
}

.takeaway-points {
    list-style: none;
    padding: 0;

}

.takeaway-points li {
    position: relative;
    padding-left: 28px;
    color: #8B93A7;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.diamond {
    position: absolute;
    left: 0;
    top: 8px;
    width: 7px;
    height: 7px;
    background: #FF7F1F;
    transform: translateY(-50%) rotate(45deg);
}

.best-for td {
    background: rgba(255, 255, 255, 0.01);
    font-size: 13px;
}

/* PERFORMANCE GRID */
.perf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #1F2937;
}

.perf-cell {
    /* min-height: 400px; */
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.perf-cell:nth-child(2n) {
    border-right: none;
}

.perf-cell:nth-last-child(-n+2) {
    border-bottom: none;
}

.perf-cell.has-content {
    background: #000;
    padding: 34px;
}

.perf-cell h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #F9FAFB;
    margin-bottom: 14px;
    font-weight: 400;
}

.perf-list {
    list-style: none;
    padding: 0;
}

.perf-list li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #8B93A7;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.perf-cell.border-right {
    border-right: 1px solid #1F2937;
}

.perf-cell.border-bottom {
    border-bottom: 1px solid #1F2937;
}

.icon-check {
    margin-top: 4px;
    flex-shrink: 0;
}


/* ARCHITECTURE GRID */
.archi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #1F2937;
}

.archi-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* border-right: 1px solid #1F2937; */
    /* border-bottom: 1px solid #1F2937; */
}

.archi-card.border-right {
    border-right: 1px solid #1F2937;
}

.archi-card.border-bottom {
    border-bottom: 1px solid #1F2937;
}

.archi-card.span-vertical {
    grid-row: span 2;
}

.archi-card .top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.archi-card .num {
    display: inline-block;
    border: 1px solid #1F2937;
    padding: 4px 8px;
    font-size: 16px;
    color: #94A3B8;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.archi-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    color: #F9FAFB;
}

.archi-card p {
    margin: 0;
    color: #8B93A7;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.icon-dim {
    color: #9CA3AF;
}

/* HOVER STYLES */
.archi-card:hover {
    background: #0B0D10;
}

.archi-card:hover .num {
    color: #FF7F1F;
    border-color: #FF7F1F;
}

.archi-card:hover h3 {
    color: #fff;
}

.archi-card:hover .icon-dim {
    color: #D1D5DB;
}

/* STATS LIST */
.stats-list {
    list-style: none;
    padding: 0;
}

.stats-list li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #4ADE80;
    margin-bottom: 8px;
}

/* OPEN SOURCE GRID */
.os-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
    /* margin-top: 40px; */
}

.os-card {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.os-icon {
    color: #94A3B8;
    margin-bottom: 20px;
}

.os-card h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #F9FAFB;
}

.os-card p {
    margin: 0;
    font-size: 16px;
    color: #8B93A7;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.os-card.border-right {
    border-right: 1px solid #1F2937;
}

/* HOVER EFFECT (User-requested: active style on hover) */
.os-card:hover {
    background: #0B0D10;
}

.os-card:hover .os-icon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
}

.os-card:hover h3 {
    color: #fff;
}

/* OS FOOTER */
.os-footer {
    text-align: right;
    padding: 24px 40px;
    background: #000;
    border-bottom: 1px solid #1F2937;
    border-left: 1px solid #1F2937;
    position: relative;
}

.os-footer::before,
.os-footer::after {
    content: '';
    position: absolute;
    bottom: -5.5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 20;
}

.os-footer::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.os-footer::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}

.github-link {
    color: #FF7F1F;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.github-link:hover {
    text-decoration: underline;
}

/* CTA SECTION */
.cta-section {
    position: relative;
    padding: 370px var(--side-padding) 160px;
    background: #000;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1F2937;
    z-index: 10;
    pointer-events: none;
}

.cta-section::before {
    left: var(--side-padding);
}

.cta-section::after {
    right: var(--side-padding);
}

.cta-video-wrap {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

.cta-video {
    width: 100%;
    height: auto;
}

.cta-container {
    position: relative;
    z-index: 10;
    width: 100%;
    /* max-width: 1100px; */
    margin: 0 auto;
}

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    border: 1px solid #FF7F1F;
    /* background: #050505; */
    position: relative;
    box-sizing: border-box;
    z-index: 50;
    margin: 0 1px;
}

.cta-content {
    padding: 23px;
    position: relative;
    border-right: 1px solid #1F2937;
    background: #0B0D10;
}

.cta-arcs {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.6;
}

.cta-content h2 {
    font-size: 42px;
    font-family: 'Inter', sans-serif;
    color: #F9FAFB;
    margin-bottom: 32px;
    line-height: 1.1;
    font-weight: 400;
}

.cta-content h2 span {
    display: block;
}

.cta-content h2 .dim {
    display: inline;
    color: #94A3B8;
}

.cta-desc-box {
    border-left: 1px solid #FF7F1F;
    padding-left: 20px;
    margin-bottom: 48px;
}

.cta-desc-box p {
    color: #8B93A7;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary-cta {
    background: #FF7F1F;
    border: 1px solid #FF7F1F;
    color: #fff;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
}

.btn-primary-cta:hover {
    background: #E85D04;
}

.btn-secondary-cta {
    background: #0B0D10;
    border: 1px solid #1F2937;
    color: #94A3B8;
    padding: 18px 32px;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.btn-secondary-cta:hover {
    border-color: #9CA3AF;
    color: #fff;
}

.cta-terminal {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
}

.terminal-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F9FAFB;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.orange-sq {
    width: 10px;
    height: 10px;
    background: #FF7F1F;
}

.terminal-mock {
    background: #0B0D10;
    border: 1px solid #1F2937;
    padding: 24px 30px;
}

.term-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 1px solid #1F2937;
    padding-bottom: 16px;
    margin: -24px -30px 24px -30px;
    padding: 16px 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.green {
    background: #4ADE80;
}

.dot.yellow {
    background: #FACC15;
}

.dot.red {
    background: #F87171;
}

.term-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #D1D5DB;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
}

.copy-icon {
    color: #94A3B8;
    cursor: pointer;
}

.copy-icon:hover {
    color: #fff;
}

.curve {
    width: 160px;
    height: 100%;
}

.cta-right-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

/* DOC STRUCTURE SECTION */
.doc-structure {
    position: relative;
    padding: 120px var(--side-padding);
    background: #000;
}

.doc-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FF7F1F;
    color: black;
    font-size: 13px;
    padding: 12px 32px 14px;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 15% 100%);
    text-transform: uppercase;
}

.doc-container {
    max-width: 1200px;
    margin: 0 auto;
}

.doc-header {
    margin-bottom: 60px;
}

.structure-label {
    color: #FF7F1F;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.doc-header h1 {
    font-size: 64px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 400;
}

.doc-header h1 span {
    color: #94A3B8;
}

.doc-subtitle {
    font-size: 18px;
    color: #D1D5DB;
    font-family: 'Inter', sans-serif;
    max-width: 600px;
    line-height: 1.6;
}

.doc-main-box {
    display: grid;
    grid-template-columns: 400px 1fr;
    border: 1px solid rgba(31, 41, 55, 0.5);
    border-bottom: none;
    background: #000;
}

.doc-sidebar {
    padding: 28px;
    border-right: 1px solid rgba(31, 41, 55, 0.5);
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #D1D5DB;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    z-index: 2;
    cursor: pointer;
}

.sidebar-item.active {
    color: #F9FAFB;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #15191E;
    border: 1px solid #1F2937;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    color: #94A3B8;
}

.mini-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    opacity: 0.3;
    filter: invert(1);
    /* Avoid filter transition flashing */
}

/* .sidebar-item:hover .mini-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
} */

.sidebar-item.active .mini-icon {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
}

.sidebar-item.active .icon-box {
    border-color: #FF7F1F;
    color: #FF7F1F;
}

.sidebar-line {
    position: absolute;
    left: 52px;
    top: 29px;
    bottom: 29px;
    width: 1px;
    background: #1F2937;
    z-index: 0;
}

/* Tab content styling */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.doc-content {
    padding: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.doc-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #F9FAFB;
    font-weight: 400;
    margin: 0;
}

.doc-points {
    list-style: none;
    padding: 0;
}

.doc-points li {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    color: #4ADE80;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.doc-points li::before {
    content: "•";
    color: #4ADE80;
}

.watermark-icon {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: #fff;
}

.watermark-icon img {
    opacity: 0.1;
    filter: invert(1);
}

/* .tab-content:hover .watermark-icon img {
    opacity: 0.3;
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
} */

/* FOOTER SECTION */
.footer-section {
    position: relative;
    background: #000;
    padding: 0 var(--side-padding);
}

.footer-section::before,
.footer-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1F2937;
    z-index: 0;
    pointer-events: none;
}

.footer-section::before {
    left: var(--side-padding);
}

.footer-section::after {
    right: var(--side-padding);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    border-top: 1px solid #1F2937;
    position: relative;
}

.footer-grid::before,
.footer-grid::after {
    content: '';
    position: absolute;
    top: -5.5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 20;
}

.footer-grid::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.footer-grid::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}

.footer-main {
    grid-row: span 2;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
} */

.logo-bolt {
    width: 385px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-size: 40px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1.5px;
    text-transform: uppercase;
}

.logo-text span {
    color: #fff;
    font-weight: 300;
    margin-left: 8px;
    text-transform: none;
    font-size: 32px;
}

.last-updated {
    font-size: 12px;
    color: #FF7F1F;
    font-family: 'JetBrains Mono', monospace;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
}

.last-updated span:first-child {
    color: #4B5563;
}

.dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.newsletter p {
    color: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 400;
}

.subscribe-box {
    display: flex;
    /* border: 1px solid #1F2937; */
    max-width: 320px;
}

.subscribe-box input {
    background: transparent;
    border: none;
    padding: 10px 16px;
    color: #fff;
    flex-grow: 1;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
}

.subscribe-box input::placeholder {
    color: #4B5563;
}

.subscribe-box button {
    background: #FF7F1F;
    border: none;
    padding: 0 20px;
    color: #F9FAFB;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    cursor: pointer;
}

.subscribe-box button:hover {
    background: #e66e10;
}

.footer-column {
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
}

.column-title {
    color: #9CA3AF;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    /* margin-bottom: 24px; */
    font-weight: 400;
    border-bottom: 1px solid #0B0D10;
    padding-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #9CA3AF;
    font-size: 14px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
}

.footer-links a:hover {
    color: #FF7F1F;
}

.border-left {
    border-left: 1px solid #1F2937;
}

.border-top {
    border-top: 1px solid #1F2937;
}

/* FOOTER BOTTOM */
.footer-bottom {
    position: relative;
    border: 1px solid #1F2937;
    margin: 0 var(--side-padding);
    padding: 15px 40px;
}

.footer-bottom::before,
.footer-bottom::after {
    content: '';
    position: absolute;
    top: -5.5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    z-index: 20;
}

.footer-bottom::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.footer-bottom::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}

.bottom-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    color: #9CA3AF;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.bottom-content p {
    justify-self: start;

}

.built-by {
    justify-self: center;
}

.utc-time {
    justify-self: end;
}

.built-by {
    display: flex;
    align-items: center;
    gap: 8px;
}

.utc-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot-green {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

/* BOTTOM SEPARATOR WITH TRIANGLES */
.bottom-separator {
    position: absolute;
    bottom: 0;
    left: var(--side-padding);
    right: var(--side-padding);
    height: 1px;
    background: #1F2937;
    z-index: 20;
}

.bottom-separator::before,
.bottom-separator::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.bottom-separator::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.bottom-separator::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}



/* BADGE BORDER WITH TRIANGLES AT TOP */
.badge-border {
    position: absolute;
    top: -1px;
    left: var(--side-padding);
    right: var(--side-padding);
    height: 1px;
    background: #1F2937;
    z-index: 20;
}

.badge-border::before,
.badge-border::after {
    content: '';
    position: absolute;
    top: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.badge-border::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.badge-border::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}

.badge-border.no-triangles::before,
.badge-border.no-triangles::after {
    display: none;
}

.text-logo {
    height: 40px;
}

.footer-text {
    color: #ffffff;
    font-size: 32px;
    font-family: 'Bai Jamjuree';
    font-weight: 500;
    letter-spacing: -1%;
}

/* TAB SYSTEM (CSS-ONLY) */
.tab-system input[type="radio"] {
    display: none;
}

.item {
    cursor: pointer;
    display: block;
    position: relative;
}

.usecase-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tab-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;

}

.item.active {
    background: none;
    border-left: none;
}

.tab-content {
    display: none;
}

/* SHOW CONTENT BASED ON CHECKED RADIO */
#tab-core:checked~.right .content-core,
#tab-limitations:checked~.right .content-limitations,
#tab-guide:checked~.right .content-guide,
#tab-architecture:checked~.right .content-architecture {
    display: block;
}

/* ACTIVE ITEM STYLING */
#tab-core:checked~.left .item-core,
#tab-limitations:checked~.left .item-limitations,
#tab-guide:checked~.left .item-guide,
#tab-architecture:checked~.left .item-architecture {
    background: #0a0a0a;
    border-left: 1px solid #ff6a00;
}

#tab-core:checked~.left .item-core .label,
#tab-limitations:checked~.left .item-limitations .label,
#tab-guide:checked~.left .item-guide .label,
#tab-architecture:checked~.left .item-architecture .label {
    color: #FF7F1F;
}

#tab-core:checked~.left .item-core p,
#tab-limitations:checked~.left .item-limitations p,
#tab-guide:checked~.left .item-guide p,
#tab-architecture:checked~.left .item-architecture p {
    color: #F9FAFB;
}

/* TAB ICON SWITCHING LOGIC */
.icon-active {
    display: none;
}

.icon-non-active {
    display: block;
    opacity: 0.3;
}

#tab-core:checked~.left .item-core .icon-non-active,
#tab-limitations:checked~.left .item-limitations .icon-non-active,
#tab-guide:checked~.left .item-guide .icon-non-active,
#tab-architecture:checked~.left .item-architecture .icon-non-active {
    display: none;
}

#tab-core:checked~.left .item-core .icon-active,
#tab-limitations:checked~.left .item-limitations .icon-active,
#tab-guide:checked~.left .item-guide .icon-active,
#tab-architecture:checked~.left .item-architecture .icon-active {
    display: block;
    opacity: 1;
}

/* ARCHITECTURE ICON HOVER FILTER */
.archi-card .archi-icon {
    /* Filter transitions cause intermediate color flashing, so we swap instantly */
}

.archi-card:hover .archi-icon {
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
    /* Orange #FF7F1F */
}


/* TAB ICON FILTERS (DISABLED PER USER REQUEST TO USE SPECIFIC ASSETS) */
/* 
#tab-core:checked~.left .item-core .tab-icon-core,
#tab-guide:checked~.left .item-guide .tab-icon-guide,
#tab-architecture:checked~.left .item-architecture .tab-icon-architecture,
#tab-limitations:checked~.left .item-limitations .tab-icon-limitations {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(77%) sepia(61%) saturate(452%) hue-rotate(86deg) brightness(100%) contrast(93%);
}
*/


/* HIGHLIGHT BOX */
.highlight-box {
    margin-top: 32px;
    padding: 24px 30px;
    border: 1px solid #4ADE80;
    background: rgba(74, 222, 128, 0.05);
    position: relative;
}

.highlight-box p {
    color: #4ADE80 !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* RESPONSIVENESS */

@media (max-width: 1400px) {
    :root {
        --side-padding: 120px;
    }
}

@media (max-width: 1200px) {
    :root {
        --side-padding: 80px;
    }

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

@media (max-width: 1024px) {
    :root {
        --side-padding: 40px;
    }

    .hero {
        gap: 40px;
    }

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

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

    .doc-main-box {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 850px) {
    .nav {
        flex-wrap: wrap;
        height: auto;
    }

    .nav-item.nav-link {
        padding: 0 15px;
        font-size: 14px;
    }

    .nav-social {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    :root {
        --side-padding: 24px;
    }

    .nav {
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        position: sticky;
        top: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
    }

    .nav-logo {
        height: 64px;
        border-bottom: none;
        flex: 1;
        justify-content: flex-start;
        padding-left: 24px;
    }

    .hamburger {
        display: flex;
        margin-right: 24px;
    }

    .nav-content {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid #1F2937;
        z-index: 100;
        padding-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .nav-toggle:checked~.nav-content {
        display: flex;
    }

    /* HAMBURGER ANIMATION */
    .nav-toggle:checked~.hamburger span:nth-child(1) {
        transform: rotate(45deg);
    }

    .nav-toggle:checked~.hamburger span:nth-child(2) {
        opacity: 0;
        transform: translateX(20px);
    }

    .nav-toggle:checked~.hamburger span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-item {
        border-right: none;
        border-bottom: 1px solid rgba(31, 41, 55, 0.5);
        width: 100%;
        justify-content: flex-start;
        padding: 20px 32px;
        height: auto;
    }

    .nav-link {
        padding: 0;
        font-size: 14px;
        color: #9CA3AF;
        letter-spacing: 1px;
    }

    .nav-link.active {
        color: #FF7F1F;
    }

    .nav-social-wrap {
        flex-direction: column;
        width: 100%;
    }

    .nav-social {
        padding: 16px 32px;
        flex-direction: row;
        gap: 12px;
        border-bottom: 1px solid rgba(31, 41, 55, 0.5);
    }

    .install {
        width: calc(100% - 64px);
        margin: 22px;
        padding: 9px;
        height: auto;
        border: 1px solid #FF7F1F;
        background: transparent;
        color: #FF7F1F;
        border-radius: 4px;
        justify-content: center;
        font-weight: 600;
    }

    .hero {
        flex-direction: column;
        height: auto;
        min-height: calc(100vh - 128px);
        padding: 80px var(--side-padding);
        justify-content: center;
        align-items: stretch;
        gap: 60px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        box-sizing: border-box;
    }

    .hero-right {
        padding-top: 0px;
        width: 100%;
        align-items: center;
    }



    .grid,
    .preview-grid,
    .perf-grid,
    .archi-grid,
    .os-grid {
        grid-template-columns: 1fr !important;
    }

    .feature-card,
    .preview-card,
    .perf-cell,
    .archi-card,
    .os-card {
        border-right: none !important;
        border-bottom: 1px solid #1F2937 !important;
    }

    .feature-card:last-child,
    .preview-card:last-child,
    .perf-cell:last-child,
    .archi-card:last-child,
    .os-card:last-child {
        border-bottom: none !important;
    }

    .container,
    .doc-main-box,
    .cta-box {
        grid-template-columns: 1fr !important;
    }

    .features-header h2,
    .usecase-header,
    .doc-header h1,
    .cta-content h2 {
        font-size: 32px !important;
    }

    .left,
    .doc-sidebar,
    .cta-content {
        border-right: none;
        border-bottom: 1px solid #1F2937;
    }

    .cta-section {
        padding: 160px var(--side-padding) 80px;
    }

    .cta-terminal {
        padding: 40px 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        align-items: stretch;
    }

    .btn-primary-cta,
    .btn-secondary-cta {
        width: 100%;
        box-sizing: border-box;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-main {
        grid-row: auto;
    }

    .border-left {
        border-left: none;
        border-top: 1px solid #1F2937;
    }

    .footer-bottom {
        padding: 40px 20px;
        /* margin: 0;
        border-left: none;
        border-right: none; */
    }

    .bottom-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .bottom-content p,
    .built-by,
    .utc-time {
        justify-self: center;
    }

    /* Keep decorative lines but ensure they align with mobile padding */
    .features-section::before,
    .features-section::after,
    .cta-section::before,
    .cta-section::after,
    .footer-section::before,
    .footer-section::after,
    .bottom-separator::before,
    .bottom-separator::after,
    .badge-border::before,
    .badge-border::after,
    .footer-bottom::before,
    .footer-bottom::after {
        display: block !important;
    }

    /* .features-section,
    .doc-structure,
    .footer-section {
        padding-top: 80px;
        padding-bottom: 80px;
    } */

    .badge,
    .doc-badge {
        padding: 8px 24px 10px;
        font-size: 10px;
        text-align: center;
    }

    .cta-content h2 span {
        display: inline;
    }

    .cta-box {
        margin: 0;
    }

    .os-footer {
        text-align: center;
        /* border-left: none; */
    }
}

.code {
    color: #60A5FA;
}

.blog-container {
    padding: 0 var(--side-padding);
    background: #000;
    color: #fff;
    position: relative;
    /* border-left: 1px solid #1f2937;
        border-right: 1px solid #1f2937; */
    min-height: 100vh;
}

/* HEADER */
.standard-header {
    height: 64px;
    border-bottom: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background:
        linear-gradient(to right,
            rgba(255, 127, 31, 0.4) 0%,
            transparent 25%,
            transparent 75%,
            rgba(255, 127, 31, 0.4) 100%),
        #000;
    /* base background */
}

.badge-top {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 32px;
    letter-spacing: -1%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #f9fafb;
    z-index: 5;
}

.t-l {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.t-r {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
}

.b-l {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
}

.b-r {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

/* FEATURED GRID */
.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    border-bottom: 1px solid #1f2937;
}

.main-featured {
    padding: 30px;
    border-right: 1px solid #1f2937;
    border-left: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.featured-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #0a0a0a;
    border: 1px solid #1f2937;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    display: block;
    background: #0a0a0a;
}

.category-tag {
    color: #FF7F1F;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 400;
    display: block;
    /* margin-bottom: 8px; */

    padding-bottom: 0;
}

.article-category-tag {
    padding: 30px;
    color: #FF7F1F;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 400;
    display: block;
    /* margin-bottom: 8px; */

    padding-bottom: 0;
}

.main-featured h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 12px;
    font-family: "Inter", sans-serif;
    color: #F9FAFB;
}

.main-featured p {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 24px;
    font-family: "Inter", sans-serif;
}

.featured-footer {

    margin-top: auto;
}

.author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

.author-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.author-img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    border: 1px solid #1f2937;
}

.author span {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: #f9fafb;
}

.meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #8b93a7;
    display: flex;
    gap: 16px;
}

.read-time {
    color: #9CA3AF;
    font-size: 12px;
    font-family: "JetBrains Mono", monospace;
    font-weight: 400;
    display: flex;
    justify-content: right;
}

/* SIDE FEATURED */
.side-featured {
    display: flex;
    flex-direction: column;
}

.side-card {
    padding: 30px;
    flex: 1;
    border-bottom: 1px solid #1f2937;
    border-right: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-card:last-child {
    border-bottom: none;
}

.side-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #0a0a0a;
    border: 1px solid #1f2937;
}

.side-card h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    color: #F9FAFB;
    font-family: "Inter", sans-serif;
}

.side-footer {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

/* FILTER SECTION */
.filter-section {
    padding: 40px;
    border-bottom: 1px solid #1f2937;
    border-left: 1px solid #1f2937;
    border-right: 1px solid #1f2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-section h2 {
    font-size: 20px;
    font-family: "Inter", sans-serif;
    margin-bottom: 20px;
    color: #F9FAFB;
    font-weight: 400;
    margin-top: 0;
}

.categories-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.label {
    color: #FF7F1F;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 400;
}

.blog-label {
    color: #FF7F1F;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    font-weight: 400;
}

.category-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.category-buttons button {
    background: transparent;
    border: 1px solid #1f2937;
    color: #9CA3AF;
    padding: 8px 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.category-buttons button:hover {
    border-color: #ff7f1f;
    color: #fff;
}

.category-buttons button.active {
    border-color: #f9fafb;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.search-input {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #1F2937;
    padding: 0 16px;
    height: 40px;
    background: #050505;
    width: 200px;
}

.search-input svg {
    color: #9CA3AF;
    margin-right: 12px;
}

.search-input input {
    background: transparent;
    border: none;
    color: #9CA3AF;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    outline: none;
    width: 100%;
}

.search-input input::placeholder {
    color: #9CA3AF;
}

/* BLOG LIST */
.blog-list {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.blog-item {
    display: grid;
    grid-template-columns: 280px 1fr;
    padding: 30px 40px;
    gap: 32px;
    border-bottom: 1px solid #1f2937;
    border-left: 1px solid #1f2937;
    border-right: 1px solid #1f2937;
}

.item-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    background: #0a0a0a;
    border: 1px solid #1f2937;
    overflow: hidden;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-position: center;
    background: #0a0a0a;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 17px;
}


.item-meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: #9CA3AF;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    font-weight: 400;
    line-height: 1.5;
}

.blog-item h3 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    font-family: "Inter", sans-serif;
    color: #F9FAFB;
    max-width: 600px;
}

.author-simple {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.author-avatar {
    width: 28px;
    height: 28px;
    background: #111;
    border: 1px solid #1f2937;
    border-radius: 4px;
}

.author-simple span {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    color: #9CA3AF;
}

@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
/* 
    .main-featured {
        border-right: none;
    } */

    .side-featured {
        flex-direction: row;
    }

    .side-card {
        border-right: 1px solid #1f2937;
    }

    /* .side-card:last-child {
        border-right: none;
    } */
}

@media (max-width: 768px) {
    .side-featured {
        flex-direction: column;
    }

    /* .side-card {
        border-right: none;
    } */

    .blog-item {
        grid-template-columns: 1fr;
        padding: 24px 20px;
    }

    .filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 24px 20px;
    }

    .search-wrap,
    .search-input {
        width: 100%;
        max-width: 100%;
    }
}

.doc-paragraph {
    font-size: 16px;
    line-height: 1.6;
    color: #8B93A7;
    font-family: "Inter", sans-serif;
    max-width: 500px;
}


.page-separator-line {
    position: absolute;
    top: 0;
    left: var(--side-padding);
    right: var(--side-padding);
    height: 1px;

    z-index: 20;

}

.page-separator-line::before,
.page-separator-line::after {
    content: '';
    position: absolute;
    top: 59px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.page-separator-line::before {
    left: 0;
    border-left: 6px solid #F9FAFB;
}

.page-separator-line::after {
    right: 0;
    border-right: 6px solid #F9FAFB;
}

.page-separator-line.no-triangles::before,
.page-separator-line.no-triangles::after {
    display: none;
}

.page-container {
    padding: 0 var(--side-padding);
    background: #000;
    color: #fff;
    min-height: 100vh;
    position: relative;
}

.content-header {
    border-bottom: 1px solid #1F2937;
    margin-left: -30px;
    margin-right: -30px;
    padding: 0 30px;
}


.content-header {
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.content-header p {
    color: #9CA3AF;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    max-width: 930px;
    line-height: 1.5;

}
.terms-header p {
    color: #9CA3AF;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    max-width: 930px;
    line-height: 1.5;
}

.privacy-header p {
    color: #9CA3AF;
    font-size: 16px;
    font-family: "Inter", sans-serif;
    max-width: 930px;
    line-height: 1.5;
}
.badge-top {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 32px;
    letter-spacing: -1%;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
}

.page-content {
    position: relative;
    padding: 30px;
    border-left: 1px solid #1f2937;
    border-right: 1px solid #1f2937;
    /* border-bottom: 1px solid #1f2937; */
}

.content-row {
    /* margin-bottom: 40px; */
    /* border-bottom: 1px solid #1F2937; */
    border-top: 1px solid #1F2937;
    margin-left: -30px;
    margin-right: -30px;
    padding-left: 30px;
    padding-right: 30px;
}

.about-dash {
    width: calc(100% + 60px);
    margin-left: -30px;
    display: block;
    object-fit: cover;
    /* margin-top: 30px; */
    margin-bottom: 30px;
}

.about-round-img {
    width: 600px;
    height: auto;
    display: block;
    margin: 40px auto;
}

.content-row:last-child {
    margin-bottom: 0;
}

.content-row h2 {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #F9FAFB;
    margin-bottom: 16px;
}

.about-title {
    font-family: "Inter", sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #F9FAFB;
    margin-bottom: 16px;
}

.content-row p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #9CA3AF;
    margin-bottom: 16px;
}

.content-row ul {
    /* margin-left: 20px;
        margin-bottom: 16px; */
    padding-left: 16px;
}

.content-row li {
    /* font-family: "Inter", sans-serif;
        font-size: 16px;
        line-height: 1.5;*/
    color: #9CA3AF;
    margin-bottom: 8px;
    list-style: none;
}

.corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border: 1px solid #f9fafb;
    z-index: 5;
}

.t-l {
    top: -5px;
    left: -5px;
    border-right: none;
    border-bottom: none;
}

.t-r {
    top: -5px;
    right: -5px;
    border-left: none;
    border-bottom: none;
}

.b-l {
    bottom: -5px;
    left: -5px;
    border-right: none;
    border-top: none;
}

.b-r {
    bottom: -5px;
    right: -5px;
    border-left: none;
    border-top: none;
}

.content-meta {
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    color: #FF7F1F;
    margin-bottom: 16px;
}

.content-diamond {
    position: absolute;
    left: 0;
    top: 0;
    width: 7px;
    height: 7px;
    background: #FF7F1F;
    transform: translateY(-50%) rotate(45deg);
}

.content-link {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 16px;
    font-family: "Inter", sans-serif;
}

.highlight-wrap {
    border-left: 1px solid #FF7F1F;
    padding-left: 16px;
    margin-bottom: 20px;
}
.blog-highlight-border {
        border-left: 1px solid #FF7F1F;
    padding-left: 16px;
}

.highlight-text {
    color: #F9FAFB !important;
    font-size: 16px;
    line-height: 1.5;
    font-family: "Inter", sans-serif;
    max-width: 810px;
}

/* .page-separator-line::before,
.page-separator-line::after {
    top: 125px !important;
} */


.privacy-sub {
    color: #F9FAFB;
    font-size: 18px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: 100%;
    background-color: #1F2937;
    /* For grid line effect */

}

.contact-item {
    background-color: #000;
    padding: 2.5rem;
    box-sizing: border-box;
}

.category-header {
    display: flex;
    align-items: center;

}

.category-title {
    font-size: 18px;
    font-weight: 400;
    color: #F9FAFB;
    font-family: "Inter", sans-serif;
}

.category-icon {
    font-size: 18px;
    margin-right: 0.75rem;
    color: #f7941d;
}

.email-address {
    color: #FF7F1F;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px;
    text-decoration: none;
    display: block;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.6;
    margin: 0;
    font-family: "Inter", sans-serif;
}



/* Responsive design */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-content {
    padding: 0;
}

.contact-header {
    padding: 30px;
}

.contact-container {
    min-height: 0;
    /* padding-bottom:100px ; */
}

.article-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 var(--side-padding);
    background: #000;
    min-height: 100vh;
    position: relative;
}

.article-container::before,
.article-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1F2937;
    z-index: 0;
    pointer-events: none;
}

.article-container::before {
    left: var(--side-padding);
}

.article-container::after {
    right: var(--side-padding);
}

/* Blog Header */
.article-header {
    /* padding: 30px 30px 0; */
    border-bottom: 1px solid #1F2937;
    position: relative;
    z-index: 1;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-bottom: 60px; */
    font-family: 'JetBrains Mono', monospace;
    border-bottom: 1px solid #1F2937;
    /* padding: 16px 0; */
    position: relative;
}

.back-link,
.next-link {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-family: "JetBrains Mono", monospace;
    padding: 8px 16px;
    /* line-height: 2; */
}

.back-link {
    border-right: 1px solid #1F2937;


}

/* .next-link {
    border-left: 1px solid #1F2937;
} */

.back-link:hover,
.next-link:hover {
    color: #fff;
}

.article-title-section {
    max-width: 100%;
    /* padding: 30px; */
    padding-bottom: 0;
}

.article-title-wrapper {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 60px;
    align-items: start;
    border-bottom: 1px solid #1F2937;
    padding: 30px;
    padding-top: 0;
}

.blog-title-left {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.blog-featured-image {
    width: 100%;
    height: auto;
    background: #0B0D10;
    border: 1px solid #1F2937;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}



.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.4;
    color: #F9FAFB;
    margin-bottom: 20px;
    letter-spacing: -1%;
    max-width: 446px;
}

.article-meta-wrapper {
    margin-top: auto;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #9CA3AF;
    justify-content: space-between;
}

.article-author-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #F9FAFB;
}

.copy-link-btn {
    background: transparent;
    border: 1px solid #1F2937;
    color: #9CA3AF;
    padding: 8px 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    cursor: pointer;

}

.copy-link-btn:hover {
    border-color: #FF7F1F;
    color: #FF7F1F;
}

/* Content Wrapper */
.article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    padding: 60px 30px;
    position: relative;
    z-index: 1;
    border-top: 1px solid #1F2937;
}

/* Table of Contents */
.table-of-contents {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-title {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 20px;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 12px;
}

.toc-link {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #F9FAFB;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    padding-left: 12px;
    border-left: 1px solid transparent;
}

.toc-link:hover {
    color: #FF7F1F;
    border-left-color: #FF7F1F;
}

.toc-link.active {
    color: #FF7F1F;
    border-left-color: #FF7F1F;
}

/* Main Content */
.article-body {
    max-width: 800px;
    border-left: 1px solid #1F2937;
    padding-left: 60px;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #F9FAFB;
    margin: 0;
    line-height: 1.2;
}

.content-section h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #F9FAFB;
    margin-bottom: 16px;
    line-height: 1.3;
}

.content-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #8B93A7;
    margin-bottom: 20px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-list li {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #8B93A7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.content-list .diamond {
    position: absolute;
    left: 0;
    top: 12px;
    width: 7px;
    height: 7px;
    background: #FF7F1F;
    transform: translateY(-50%) rotate(45deg);
}

/* .content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #FF7F1F;
    font-weight: bold;
} */

/* Responsive Design */
@media (max-width: 768px) {
    .article-container {
        padding: 0 20px;
    }

    /* .article-header {
        padding: 80px 10px 0px;
    } */

    .article-layout {
        padding: 60px 10px;
    }

    .article-body {
        border-left: none;
        padding-left: 0;
    }

    .article-title-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-featured-image {
        height: auto;
    }

    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .table-of-contents {
        position: static;
    }

    .blog-nav {
        /* flex-direction: column; */
        gap: 20px;
        align-items: flex-start;
    }

    .article-author-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.about-section {
    border-top: none;
    margin-bottom: 21px;
}

.about-project-section {
    margin-bottom: 0;
    border-bottom: none;
}

.about-date {
    color: #FF7F1F;
    font-size: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 400;
    text-transform: uppercase;
}

.team-section {
    /* padding: 80px 20px; */
    display: flex;
    justify-content: center;
}

.about-team-section {
    border-bottom: none;
    margin-bottom: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% + 60px);
    margin-left: -30px;
}

.about-card {
    background-color: transparent;
    padding: 40px;
    border-right: 1px solid #1a1a1a;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    display: flex;
    flex-direction: column;
}

.about-card:last-child {
    border-right: none;
}

/* The top orange line for the highlighted card */
.about-card.active {
    border-top: 1px solid #ff5c00;
}

.about-card-header {
    display: flex;
    gap: 16px;
}

.avatar,
.avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: #1a1a1a;
    object-fit: cover;
}

.name {
    color: #F9FAFB;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Bai Jamjuree', sans-serif;
}

.role {
    color: #FF7F1F !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 12px !important;
    margin: 8px 0 0 0 !important;
}

.team-description {
    color: #9CA3AF;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes social bar to the bottom */
    font-family: 'Inter', sans-serif;
}

.social-bar {
    display: flex;
    gap: 15px;
}

.icon {
    color: #333333;
    height: 24px;
    width: 24px;
    text-decoration: none;
}

.icon.orange {
    color: #ff5c00;
}

/* Responsive Fix for Mobile */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        border-right: none;
    }
}

.principles-container {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    /* gap: 40px; */
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.principle-title {
    color: #FF7F1F;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.principle-desc {
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.principle-desc code {
    color: #F87171;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 16px;
    font-weight: 400;
}

.principle-desc {
    color: #9CA3AF;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* ABOUT PAGE NEW SECTIONS */
.about-extra-section {
    padding-top: 32px;
    padding-left: 30px;
    padding-right: 30px;
    /* border-top: 1px solid #1F2937; */
    margin-left: -30px;
    margin-right: -30px;
}

/* .about-extra-section h2 {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #F9FAFB;
    margin-bottom: 24px;
    letter-spacing: -1px;
} */

.about-extra-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #9CA3AF;
    /* max-width: 900px; */
}

.about-extra-section p+p {
    margin-top: 20px;
}

.about-border-top {
    border-top: 1px solid #1F2937;
    width: calc(100% + 60px);
    margin-left: -30px;
}

/* CTA GRID ABOUT */
.cta-grid-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #1F2937;
}

.cta-card-about {
    padding: 40px;
    border-right: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
}

.cta-card-about:nth-child(3n) {
    border-right: none;
}

.cta-card-about:nth-last-child(-n+3) {
    border-bottom: none;
}

.cta-card-about:hover {
    background: #0B0D10;
}

.cta-card-about:hover .cta-icon-image  {
    opacity: 1;
    filter: brightness(0) saturate(100%) invert(56%) sepia(87%) saturate(3015%) hue-rotate(349deg) brightness(101%) contrast(102%);
}


.cta-card-about:hover .cta-icon-box {
    border-color: #FF7F1F;
}
.cta-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #1F2937;
    background: #0B0D10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-box.active {
    border-color: #FF7F1F;
}

.cta-icon-box svg {
    width: 20px;
    height: 20px;
    color: #9CA3AF;
}

.cta-icon-box.active svg {
    color: #FF7F1F;
}

.cta-card-about h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #F9FAFB;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-card-about p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #9CA3AF;
}

@media (max-width: 900px) {
    .cta-grid-about {
        grid-template-columns: 1fr;
    }

    .cta-card-about {
        border-right: none;
        border-bottom: 1px solid #1F2937;
    }

    .cta-card-about:last-child {
        border-bottom: none;
    }
}

.about-round-img-container {
    border: 1px solid #1F2937;
}

/* DOCUMENTATION PAGE STYLES */
.docs-container {
    display: flex;
    max-width: 100%;
    min-height: calc(100vh - 64px);
    background: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    position: relative;
    align-items: stretch;
}

.docs-sidebar {
    width: 280px;
    background: #000;
    border-right: 1px solid #1F2937;
    padding: 20px 0;
    overflow-y: auto;
    flex-shrink: 0;
    height: calc(100vh - 64px);
    position: sticky;
    top: 64px;
    display: flex;
    flex-direction: column;
    scrollbar-color: #000 transparent;
}

/* Custom Scrollbar for Sidebar */
.docs-sidebar::-webkit-scrollbar {
    width: 3px;
}

.docs-sidebar::-webkit-scrollbar-track {
    background: transparent;
    margin: 40px 0;
    /* Keeps it strictly in the center region */
}

.docs-sidebar::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 10px;
    /* Artificially crush the visible length of the scrollbar thumb */
    border-top: 15vh solid transparent;
    border-bottom: 15vh solid transparent;
    background-clip: padding-box;
}

.docs-sidebar::-webkit-scrollbar-thumb:hover {
    background: #4B5563;
}

/* Sidebar Search */
.sidebar-search {
    padding: 0 16px;
    margin-bottom: 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: transparent;
    border: 1px solid #1F2937;
    border-radius: 2px;
    padding: 0 12px;
    height: 44px;
    gap: 8px;
}

.search-input-wrapper:hover {
    border-color: #9CA3AF;
}

.search-input-wrapper:focus-within {
    border-color: #FF7F1F;
    box-shadow: 0 0 0 1px rgba(255, 127, 31, 0.2);
}

.search-icon {
    width: 20px;
    height: 20px;
    color: #F9FAFB;
    margin-right: 12px;
    flex-shrink: 0;
    opacity: 0.9;
}

.search-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    width: 100%;
}

.search-input-wrapper input::placeholder {
    color: #9CA3AF;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.docs-content {
    flex-grow: 1;
    /* padding: 40px 0; */
    /* Removed horizontal padding */
    overflow-y: auto;
    border-right: 1px solid #1F2937;
    border-bottom: 1px solid #1F2937;
}

.sidebar-label {
    color: #FF7F1F;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    padding: 0 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sidebar-category {
    margin-bottom: 24px;
}

.sidebar-category summary {
    list-style: none;
    outline: none;
}

.sidebar-category summary::-webkit-details-marker {
    display: none;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    padding: 0 20px;
    color: #F9FAFB;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
    gap: 12px;
}

.sidebar-nav-item:hover {
    color: #fff;
}


.sidebar-nav-item .chevron {
    width: 14px;
    height: 14px;
}

details[open] .sidebar-nav-item .chevron {
    transform: rotate(90deg);
}

/* Subcategories and Components also as details/summary if nested */
.subcategory-list {
    position: relative;
    margin-left: 26px;
    margin-top: 4px;
    margin-bottom: 12px;
}

.subcategory-list::before {
    display: none;
}

.subcategory-list.no-side-bullets::before {
    display: block;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #1F2937;
}

.subcategory-list details {
    position: relative;
    margin-bottom: 24px;
    /* padding-left: 26px; */
}

.subcategory-list details::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    bottom: 0;
    width: 1px;
    background: #1F2937;
}

.subcategory-list details:last-child::before {
    display: block;
}

.related-quick-start {
    color: #F9FAFB !important;
}

.component-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    border: none;
    padding: 2px 0 6px 0;
}

.sidebar-sub-item {
    position: relative;
    padding: 8px 16px;
    color: #9CA3AF;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.sidebar-sub-item::before {
    content: '';
    position: absolute;
    left: -3.5px;
    top: 16px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #1F2937;
    background: #000;
    box-sizing: border-box;
}

/* Subtitle style (Category headers) */
.sidebar-sub-item.subtitle {
    text-transform: uppercase;
    color: #4B5563;
    font-size: 12px;
    font-weight: 400;
    padding-bottom: 4px;
    font-family: 'JetBrains Mono', monospace;
}

/* Hide only bullets for specific sections but keep the side border line */
.no-side-bullets::before {
    top: 0;
    /* Start line from very top for social links since there's no circle */
    bottom: 0;
}

.no-side-bullets .sidebar-sub-item::before {
    display: none;
}

.sidebar-sub-item:hover {
    color: #F9FAFB;
}

.sidebar-sub-item.active {
    color: #FF7F1F;
}

.sidebar-sub-item.active::before {
    border-color: #FF7F1F;
}

.sidebar-comp-item {
    padding: 8px 16px;
    color: #9CA3AF;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    border-left: 1px solid transparent;
    text-decoration: none;
    position: relative;
}

.sidebar-comp-item:hover {
    color: #F9FAFB;
}

.sidebar-comp-item.active {
    color: #FF7F1F;
    border-left: 1px solid #FF7F1F;
    background-color: rgba(255, 127, 31, 0.1);
}

/* Status Labels */
.status-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 12px 40px;
    width: fit-content;
    /* margin-top: 40px; */
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
}

.status-grid .label {
    color: #9CA3AF;
}

.status-success {
    color: #22c55e;
}

.status-warning {
    color: #eab308;
}

.status-error {
    color: #ef4444;
}

.status-info {
    color: #3b82f6;
}

.status-primary {
    color: #FF7F1F;
}

/* Sidebar Footer / Follow Section */
.sidebar-footer {
    padding: 30px 20px;
    border-top: 1px solid #1F2937;
    margin-top: auto;
}

.sidebar-follow-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sidebar-footer-logo {
    width: 120px;
    height: auto;
    opacity: 0.8;
}

.sidebar-social-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.sidebar-follow-label {
    color: #9CA3AF;
    font-size: 11px;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    margin: 0;
}

.sidebar-social-icons {
    display: flex;
    gap: 12px;
}

.sidebar-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-social-icons a:hover {
    transform: translateY(-2px);
}

.sidebar-social-icons img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    filter: grayscale(1);
}

.sidebar-social-icons a:hover img {
    opacity: 1;
    filter: none;
}

.status-secondary {
    color: #9CA3AF;
}

.status-muted {
    color: #9CA3AF;
}

/* Breadcrumbs Section labels */
.annotation-labels {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.annotation-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.annotation-type {
    color: #FF7F1F;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    text-transform: uppercase;
}

.annotation-value {
    color: #F9FAFB;
    font-size: 14px;
}

/* --- MAIN CONTENT TYPOGRAPHY --- */

.docs-content-inner {
    max-width: 1200px;
    padding: 40px;
    padding-left: 200px;
    padding-right: 200px;
    /* Increased from 900px to better utilize available space */
}


.docs-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9CA3AF;
    font-size: 16px;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
}

.docs-breadcrumbs a {
    text-decoration: none;
    color: #9CA3AF;
}

.docs-breadcrumbs a:hover {
    color: #FF7F1F;
}

.docs-breadcrumbs .active {
    color: #F9FAFB;
}

.docs-title {
    font-size: 32px;
    font-weight: 400;
    color: #F9FAFB;
    /* margin-bottom: 28px; */
    font-family: 'Inter', sans-serif;
}

.docs-intro-section {
    margin-bottom: 28px;
    padding-bottom: 14px;
    /* border-bottom: 1px solid #1F2937; */
    scroll-margin-top: 100px;
}

.docs-intro-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.docs-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #F9FAFB;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.docs-paragraph {
    color: #9CA3AF;
    line-height: 1.5;
    /* margin-bottom: 20px; */
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.docs-paragraph a {
    color: inherit;
    text-decoration: none;
}

.docs-resource-links {
    margin-top: 24px;
}

.docs-resource-links li a {
    color: #9CA3AF;
    text-decoration: underline;
}

.docs-resource-links li a:hover {
    color: #F9FAFB;
}

.docs-callout {
    border-left: 1px solid #FF7F1F;
    padding-left: 16px;
    margin: 20px 0;
    color: #F9FAFB;
    font-size: 16px;
    line-height: 1.5;
}

.docs-para-highlight {
    color: #F9FAFB;
}

.docs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    padding-left: 16px;

}

.docs-list li {
    position: relative;
    padding-left: 20px;
    color: #9CA3AF;
    margin-bottom: 12px;
    line-height: 1.2;
    font-size: 16px;
}

.docs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #FF7F1F;
    transform: translateY(-50%) rotate(45deg);
}

.docs-numbered-list {
    padding-left: 20px;
    margin-bottom: 32px;
}

.docs-numbered-list li {
    color: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 8px;
}

.docs-list-links li {
    padding-left: 0;
}

.docs-list-links li::before {
    display: none;
}

/* --- COMPARISON SECTION --- */

.comparison-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 24px;
}

.comparison-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-title {
    font-size: 18px;
    color: #F9FAFB;
    font-weight: 500;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.comparison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9CA3AF;
    font-size: 16px;
    line-height: 1.4;
}

.comparison-list li img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.comparison-list li span {
    flex: 1;
}

/* --- INFO ALERT --- */

.info-alert {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: #0B0D10;
    border: 1px solid #1F2937;
    border-radius: 12px;
    margin: 32px 0;
}

.info-icon {
    font-size: 20px;
}

.info-alert p {
    color: #F9FAFB;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.docs-callout {
    border-left: 1px solid #FF7F1F;
    padding: 0 0 0 14px;
    margin: 32px 0;
}

.docs-callout p {
    color: #F9FAFB;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* --- STEPS LIST --- */

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item h3 {
    font-size: 18px;
    color: #F9FAFB;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.docs-code {
    color: #F87171;
}

/* --- CODE BLOCK --- */

.docs-code-block {
    background: transparent;
    border: 1px solid #1F2937;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.docs-code-block.dark-bg {
    background: #0B0D10;
}

.code-header {
    background: #0B0D11;
    padding: 12px 20px;
    border-bottom: 1px solid #1F2937;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.code-header span {
    color: #9CA3AF;
    font-size: 13px;
    font-family: 'JetBrains Mono', monospace;
}

.copy-btn-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.copy-btn-icon:hover {
    color: #F9FAFB;
}

.copy-btn-icon svg {
    width: 20px;
    height: 20px;
}

.code-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.docs-code-block pre {
    padding: 14px 20px;
    margin: 0;
    overflow-x: auto;
    width: 100%;
}

.docs-code-block code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.keyword {
    color: #FF7F1F;
}

.component {
    color: #60A5FA !important;
}

.brand {
    color: #FFA570;
}

.component-name {
    color: #F9FAFB;
}

.tag {
    color: #60A5FA;
}

.string {
    color: #4ADE80;
    font-family: 'JetBrains Mono', monospace;
}

.attr {
    color: #FBBF24;
}

.number {
    color: #A78BFA;
}

.comment {
    color: #9CA3AF;
}

.docs-caption {
    color: #9CA3AF;
    font-size: 13px;
    font-style: italic;
    margin-bottom: 32px;
}

/* --- STEPS / GUIDE (Scoped to timeline container) --- */

.steps-container {
    border-left: 1px solid #FF7F1F;
    padding-left: 32px;
    margin-left: 4px;
    display: flex;
    flex-direction: column;
    margin-top: 24px;
}

.steps-container .step-item {
    position: relative;
    border-top: 1px solid #1F2937;
    padding-top: 40px;
    /* margin-bottom: 40px; */
}

.steps-container .step-item:first-child {
    border-top: none;
    padding-top: 0;
}

.steps-container .step-item::before {
    content: "";
    position: absolute;
    left: -33px;
    top: 28px;
    width: 8px;
    height: 47px;
    background: #FF7F1F;
    clip-path: polygon(0% 0%, 0% 0%, 146% 50%, 0% 100%, 0% 100%);
    z-index: 10;
}

.steps-container .step-item:first-child::before {
    top: 0;
}

/* Base Step Item (Unstyled indicators) */
.step-item {
    position: relative;
}

/* Generic Step Title */
.step-title {
    color: #FF7F1F !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

.bug-title {
    color: #F9FAFB !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin-bottom: 16px !important;
    margin-top: 0 !important;
    font-family: 'Inter', sans-serif !important;
}

/* 
.info-alert {
    background: rgba(255, 127, 31, 0.05);
    border-left: 1px solid #FF7F1F;
    padding: 16px 20px;
    color: #9CA3AF;
    font-size: 15px;
    line-height: 1.5;
    margin-top: 16px;
    border-radius: 0 4px 4px 0;
} */

.table-wrapper {
    overflow-x: auto;
    /* margin-bottom: 40px; */
    border: 1px solid #1F2937;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}

.docs-table th {
    background: #0B0D10;
    color: #9CA3AF;
    font-weight: 400;
    padding: 16px;
    border-bottom: 1px solid #1F2937;
}

.docs-table td {
    padding: 20px 16px;
    color: #9CA3AF;
    border-bottom: 1px solid #1F2937;
}

/* .docs-table td:first-child {
    color: #F9FAFB;
} */

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

.status-success {
    color: #4ADE80 !important;
}

.status-error {
    color: #F87171 !important;
}

.status-warning {
    color: #FF7F1F !important;
}

/* --- FAQ / ACCORDIONS --- */

/* --- FAQ / ACCORDIONS --- */

.faq-container {
    display: flex;
    flex-direction: column;
    border: 1px solid #1F2937;
    overflow: hidden;
    margin-bottom: 32px;
}

.faq-item {
    border-bottom: 1px solid #1F2937;
}

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

.faq-item summary {
    padding: 24px;
    color: #F9FAFB;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
    /* Hide default arrow Safari/Chrome */
}

.faq-item .chevron {
    width: 20px;
    height: 20px;
    color: #F9FAFB;
}

.faq-item[open] .chevron {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px 24px;
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
}

/* --- NEXT LINK --- */

/* --- SKELETON LOADING --- */
.skeleton {
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
}

/* --- FOOTER NAV --- */

.docs-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    /* margin-top: 80px; */
    padding-top: 35px;
    padding-bottom: 35px;
    border-top: 1px solid #1F2937;
}

.prev-link,
.next-link {
    flex: 1;
    display: flex;
    flex-direction: column;
    /* padding: 24px; */
    /* border: 1px solid #1F2937; */
    border-radius: 8px;
    text-decoration: none;
}

/* .prev-link:hover,
.next-link:hover {
    border-color: #FF7F1F;
    background: rgba(255, 127, 31, 0.02);
} */

.prev-link {
    align-items: flex-start;
}

.next-link {
    align-items: flex-end;
}

.prev-link .label,
.next-link .label {
    color: #9CA3AF;
    font-size: 12px;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 8px;
    display: block;
}

.prev-link .title,
.next-link .title {
    color: #F9FAFB;
    font-size: 18px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* --- RIGHT TOC --- */

.docs-toc {
    width: 240px;
    padding: 40px 20px;
    height: calc(100vh - 64px);
    position: sticky;
    top: 64px;
    flex-shrink: 0;
}

.toc-header {
    color: #F9FAFB;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    font-family: 'JetBrains Mono', monospace;
    color: #F9FAFB;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 1px solid #1F2937;
    padding-left: 20px;
    margin-left: 4px;
}

.toc-nav a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    position: relative;
}

.toc-nav a:hover,
.toc-nav a.active {
    color: #FF7F1F;
}

.toc-nav a.active::before {
    content: "";
    position: absolute;
    left: -21px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #FF7F1F;
}

/* .toc-nav a.toc-sub {
    padding-left: 20px;
    font-size: 13px;
} */

.toc-nav a.toc-sub.active::before {
    left: -21px;
}

/* --- FINAL COMPREHENSIVE RESPONSIVENESS REFINEMENTS --- */

/* Horizontal scroll for wide tables */
.comparison-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    min-width: 800px;
    /* Preserve table structure on small screens */
}

@media (max-width: 1024px) {
    .article-title-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .docs-container {
        flex-direction: column;
        padding-left: 0;
    }

    .docs-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        top: 0;
        border-right: none;
        border-bottom: 1px solid #1F2937;
        padding: 20px 24px;
    }

    .docs-content {
        padding: 40px 24px;
    }

    .doc-main-box {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    /* h1 {
        font-size: 40px !important;
    }

    h2 {
        font-size: 32px !important;
    } */

    /* .features-header {
        padding: 20px;
    } */

    .features-header h2 {
        font-size: 32px !important;
    }

    .cta-card-about:nth-last-child(-n+3) {
    border-bottom: 1px solid #1F2937 !important;
}

    /* Stack Use Cases labels and content */
    .tab-system {
        grid-template-columns: 1fr !important;
    }

    .left {
        border-right: none !important;
        border-bottom: 1px solid #1F2937;
    }

    .item {
        padding: 24px !important;
    }

    .right {
        padding: 30px 20px !important;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-main {
        padding-bottom: 40px;
        /* border-bottom: 1px solid #1F2937; */
    }

    .footer-links {
        padding-top: 40px;
        border-left: none !important;
        border-top: 1px solid #1F2937;
    }

    .footer-bottom {
        padding: 30px 24px;
    }

    .bottom-content {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 24px;
    }

    .bottom-content p,
    .built-by,
    .utc-time {
        justify-self: center !important;
    }
}

@media (max-width: 480px) {
    :root {
        --side-padding: 16px;
    }

    h1 {
        font-size: 32px !important;
    }

    /* .actions {
        padding: 0 16px;
    } */

    .btn-primary,
    .btn-secondary {
        font-size: 14px;
        padding: 0 16px;
    }

    .install-card {
        padding: 20px !important;
    }

    .blog-listing-header h1 {
        font-size: 28px;
    }
}

.how-it-works {
    padding: 0 var(--side-padding);
    position: relative;
    background: #000;
}

.section-border-container {
    border-left: 1px solid #1f2937;
    border-right: 1px solid #1f2937;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* CORNER ACCENTS (Triangles) */
/* .corner-accent {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #fff;
    z-index: 10;
}

.top-left {
    top: -1px;
    left: -1px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}

.top-right {
    top: -1px;
    right: -1px;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
} */

.bottom-left {
    bottom: -1px;
    left: -1px;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.bottom-right {
    bottom: -1px;
    right: -1px;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

/* BADGE OVERRIDE REMOVED TO USE GLOBAL STYLE */

/* HEADER */
.header-left {
    flex: 1;
}

.how-header-right {
    margin-top: 10px;
}

.avatar-box {
    width: 64px;
    height: 64px;
    background: #334155;
    border-radius: 50%;
    /* Image shows rounded, maybe circle? */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #475569;
    position: relative;
}

.avatar-container {
    position: relative;
    background: #1e293b;
    padding: 4px;
    border-radius: 8px;
}

.avatar-container::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 10px;
    width: 12px;
    height: 12px;
    background: #1e293b;
    transform: rotate(45deg);
}

.avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO PREVIEW */
.video-preview {
    height: 520px;
    background: #020617;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #1f2937;
    position: relative;
}

.play-button {
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    cursor: pointer;
    z-index: 2;
}

.play-button:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* STEPS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.step-card {
    padding: 40px;
    border-right: 1px solid #1f2937;
}

.step-card:last-child {
    border-right: none;
}

.step-card:hover {
    background: #0B0D10;
}

.step-card:hover .num-box {
    border-color: #FF7F1F;
    color: #FF7F1F;
}

.num-box {
    width: 32px;
    height: 32px;
    border: 1px solid #4B5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 16px;
    color: #9CA3AF;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 18px;
    color: #F9FAFB;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    margin-bottom: 16px;
}

.step-card p {
    color: #8B93A7;
    font-size: 16px;
    line-height: 1.6;
    font-family: "Inter", sans-serif;
}

@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        border-right: none;
        border-bottom: 1px solid #1f2937;
    }

    .step-card:last-child {
        border-bottom: none;
    }

    .how-header {
        grid-template-columns: 1fr;
    }

    .how-header-right {
        display: none;
    }
}

/* Global Docs Footer */
.global-docs-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #1F2937;
}

.global-footer-logo-link {
    border: none;
    padding: 0;
    background: none;
    text-decoration: none;
}

.global-footer-logo {
    width: 154px;
    height: 16px;
    display: block;
}

.global-footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.global-footer-follow-text {
    margin: 0;
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    color: #9CA3AF;
}

.global-footer-icons {
    display: flex;
    gap: 16px;
}

.global-follow-icon img {
    opacity: 0.7;
    display: block;
}

.global-follow-icon:hover img {
    opacity: 1;
}

@media (max-width: 640px) {
    .global-docs-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

.perf-cell-bundle {
    /* height: 500px; */
    width: 100%;
    object-fit: contain;
}