.why-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(143, 212, 0, .16);
    border: 1px solid rgba(143, 212, 0, .16);
    border-radius: 20px;
    overflow: hidden;
}

.why-item {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 32px 28px;
    background: #0e1408;
    overflow: hidden;
    opacity: 0;
    transform: translateY(14px);
    transition: background .25s ease, transform .25s ease;
}

.why-item.in-view {
    animation: why-item-reveal .55s cubic-bezier(.2, .7, .2, 1) forwards;
    animation-delay: calc(var(--why-i, 0) * 70ms);
}

@keyframes why-item-reveal {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

.why-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120px 90px at 0% 0%, rgba(215,255,69,.08), transparent 70%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.why-item:hover {
    background: #131a0a;
}
.why-item:hover::before { opacity: 1; }

.why-item-num {
    flex: 0 0 auto;
    font-family: "JetBrains Mono", monospace;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1;
    background: linear-gradient(160deg, rgba(231,255,115,.9), rgba(143,212,0,.55));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    opacity: .5;
    transition: opacity .25s ease, transform .25s ease;
}

.why-item:hover .why-item-num {
    opacity: 1;
    transform: translateY(-2px);
}

.why-item-body h3 {
    margin: 2px 0 8px 0;
    font-family: "Syne", sans-serif;
    font-size: 1.08rem;
    letter-spacing: -.01em;
}

.why-item-body p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.6;
    opacity: .72;
}

.why-item-body p strong {
    color: #d7ff45;
    font-weight: 700;
    opacity: 1;
}

.why-item-body code {
    font-family: "JetBrains Mono", monospace;
    font-size: .85em;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(143, 212, 0, .12);
    color: #d7ff45;
}

@media (max-width: 900px) {
    .why-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .why-showcase { grid-template-columns: 1fr; }
    .why-item { padding: 26px 22px; }
    .why-item-num { font-size: 2rem; }
}

.why-faq {
    max-width: 760px;
    margin: 56px auto 0 auto;
}

.why-faq-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    padding: 18px 24px;
    border: 1px solid rgba(143, 212, 0, .16);
    border-radius: 16px;
    background: #0e1408;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: background .2s ease, border-color .2s ease;
}

.why-faq-toggle:hover {
    background: #131a0a;
    border-color: rgba(143, 212, 0, .3);
}

.why-faq-toggle[aria-expanded="true"] {
    border-radius: 16px 16px 0 0;
    border-bottom-color: transparent;
}

.why-faq-head {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.why-faq-title {
    font-family: "Syne", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.why-faq-toggle-chevron {
    flex: 0 0 auto;
    font-size: 1.3em;
    opacity: .55;
    transition: transform .2s ease;
}

.why-faq-toggle[aria-expanded="true"] .why-faq-toggle-chevron {
    transform: rotate(180deg);
}

.why-faq-body {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    border: 1px solid rgba(143, 212, 0, .16);
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: #0e1408;
    overflow: hidden;
    align-items: stretch;
    margin-top: -1px;
}

.why-faq-body[hidden] {
    display: none;
}

.why-faq-questions {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid rgba(143, 212, 0, .16);
}

.why-faq-q {
    display: block;
    width: 100%;
    text-align: left;
    font-family: "Syne", sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: inherit;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(143, 212, 0, .1);
    padding: 16px 20px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .2s ease, background .2s ease;
}

.why-faq-questions .why-faq-q:last-child { border-bottom: none; }

.why-faq-q:hover { opacity: .85; background: rgba(143, 212, 0, .05); }

.why-faq-q.active {
    opacity: 1;
    background: rgba(143, 212, 0, .1);
    color: #d7ff45;
}

.why-faq-answer {
    padding: 24px 26px;
    min-height: 100%;
    display: flex;
    align-items: center;
    background: #131a0a;
}

.why-faq-answer p {
    margin: 0;
    font-size: .95rem;
    line-height: 1.65;
    opacity: .85;
}

.why-faq-answer p.fade {
    animation: why-faq-fade .3s ease;
}

@keyframes why-faq-fade {
    from { opacity: 0; transform: translateX(6px); }
    to   { opacity: .85; transform: translateX(0); }
}

.why-faq-answer p code {
    font-family: "JetBrains Mono", monospace;
    font-size: .85em;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(143, 212, 0, .12);
    color: #d7ff45;
}

@media (max-width: 720px) {
    .why-faq-body {
        grid-template-columns: 1fr;
    }
    .why-faq-questions {
        border-right: none;
        border-bottom: 1px solid rgba(143, 212, 0, .16);
    }
}

.why-scale {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.why-scale-table-wrap {
    border: 1px solid rgba(143, 212, 0, .16);
    border-radius: 14px;
    overflow: hidden;
    background: #0e1408;
    overflow-x: auto;
}

.why-scale-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .88rem;
}

.why-scale-table thead th {
    text-align: left;
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .55;
    background: rgba(143, 212, 0, .06);
    padding: 12px 18px;
    border-bottom: 1px solid rgba(143, 212, 0, .16);
    white-space: nowrap;
}

.why-scale-table tbody td {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(143, 212, 0, .1);
    vertical-align: top;
}

.why-scale-table tbody tr:last-child td {
    border-bottom: none;
}

.why-scale-table tbody tr:hover {
    background: rgba(143, 212, 0, .04);
}

.why-scale-sub {
    display: inline-block;
    margin-top: 2px;
    font-size: .82em;
    opacity: .6;
}

.why-scale-table code {
    font-family: "JetBrains Mono", monospace;
    font-size: .9em;
    padding: 1px 5px;
    border-radius: 4px;
    background: rgba(143, 212, 0, .12);
    color: #d7ff45;
}

.why-scale-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
}

.why-scale-badge.stable {
    background: rgba(143, 212, 0, .16);
    color: #d7ff45;
}

.why-scale-badge.experimental {
    background: rgba(255, 165, 0, .16);
    color: #ffb454;
}

.why-scale-note {
    margin: 14px 4px 0 4px;
    font-size: .82rem;
    opacity: .6;
    line-height: 1.5;
}

@media (max-width: 700px) {
    .why-scale-table {
        font-size: .82rem;
    }
    .why-scale-table thead th,
    .why-scale-table tbody td {
        padding: 10px 12px;
    }
}
