body { background: #0A0A0A; color: #F5F5F5; }

.g5-breadcrumb {
    background: #111111;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.875rem 0;
}

.g5-breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.g5-breadcrumb-list a {
    font-size: 0.8125rem;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.15s;
}

.g5-breadcrumb-list a:hover { color: #E63946; }
.g5-breadcrumb-sep { color: rgba(255,255,255,0.15); font-size: 0.75rem; }
.g5-breadcrumb-current { font-size: 0.8125rem; font-weight: 600; color: #F5F5F5; }

.g5-hero {
    background: linear-gradient(160deg, #0F0F0F 0%, #131313 50%, #1a1a1a 100%);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 72px 0 60px;
    position: relative;
    overflow: hidden;
}

.g5-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E63946, #FF8C94, #E63946);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

.g5-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 700px 400px at 110% 50%, rgba(230,57,70,0.08) 0%, transparent 70%),
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
    pointer-events: none;
}

.g5-hero-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.g5-hero-left,
.g5-hero-right {
    position: relative;
}

.g5-badge-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.g5-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.g5-badge--cat {
    background: rgba(230,57,70,0.12);
    border: 1px solid rgba(230,57,70,0.3);
    color: #E63946;
}

.g5-badge--ready {
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
}

.g5-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse-green 2s ease-in-out infinite;
}

.g5-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #F5F5F5;
    margin-bottom: 1.125rem;
}

.g5-hero-title-accent { color: #E63946; }

.g5-hero-sub {
    font-size: 1.0625rem;
    color: #A3A3A3;
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

.g5-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.g5-trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #A3A3A3;
}

.g5-trust-icon {
    width: 16px;
    height: 16px;
    stroke: #E63946;
    flex-shrink: 0;
}

.g5-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.g5-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.375rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.18s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.g5-btn--primary {
    background: #E63946;
    color: #fff;
    box-shadow: 0 4px 12px rgba(230,57,70,0.35);
}

.g5-btn--primary:hover {
    background: #C81D2A;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}

.g5-btn--outline {
    background: rgba(255,255,255,0.05);
    color: #D4D4D4;
    border: 1px solid rgba(255,255,255,0.12);
}

.g5-btn--outline:hover {
    border-color: rgba(230,57,70,0.4);
    color: #E63946;
    transform: translateY(-1px);
    background: rgba(230,57,70,0.05);
}

.g5-btn--ghost {
    background: transparent;
    color: #6B7280;
    border: 1px solid rgba(255,255,255,0.08);
}

.g5-btn--ghost:hover {
    color: #A3A3A3;
    border-color: rgba(255,255,255,0.15);
}

.g5-spec-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    position: relative;
}

.g5-spec-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #E63946, transparent);
}

.g5-spec-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
}

.g5-spec-card-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B7280;
}

.g5-spec-card-ver {
    font-size: 0.72rem;
    font-family: "JetBrains Mono", monospace;
    color: #6B7280;
    background: rgba(255,255,255,0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.g5-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.g5-kpi {
    padding: 1.25rem 1.25rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.15s;
}

.g5-kpi:nth-child(even) { border-right: none; }
.g5-kpi:nth-last-child(-n+2) { border-bottom: none; }
.g5-kpi:hover { background: rgba(230,57,70,0.05); }

.g5-kpi-val {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    font-family: "JetBrains Mono", monospace;
    color: #E63946;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.g5-kpi-lbl {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.g5-card-section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.g5-card-sec-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6B7280;
    display: block;
    margin-bottom: 0.6rem;
}

.g5-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.g5-tag {
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.73rem;
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
    background: rgba(255,255,255,0.05);
    color: #A3A3A3;
    border: 1px solid rgba(255,255,255,0.08);
}

.g5-tag--red {
    background: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.25);
    color: #E63946;
}

.g5-tag--active {
    background: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.35);
    color: #E63946;
    font-weight: 700;
}

.g5-tabs-wrap {
    position: sticky;
    top: 73px;
    z-index: 50;
    background: rgba(10,10,10,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: box-shadow 0.2s;
}

.g5-tabs-wrap--shadow { box-shadow: 0 4px 24px rgba(0,0,0,0.5); }

.g5-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.g5-tabs::-webkit-scrollbar { display: none; }

.g5-tab {
    flex-shrink: 0;
    padding: 1rem 1.375rem;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6B7280;
    font-family: "Inter", sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.18s;
    white-space: nowrap;
    margin-bottom: -1px;
}

.g5-tab:hover { color: #D4D4D4; }

.g5-tab.g5-tab--active {
    color: #F5F5F5;
    border-bottom-color: #E63946;
    font-weight: 600;
}

.g5-section {
    padding: 4.5rem 0;
    background: #0A0A0A;
}

.g5-section-alt { background: #0F0F0F; }

.g5-section-head {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.g5-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E63946;
    margin-bottom: 0.75rem;
}

.g5-section-title {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #F5F5F5;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 0.875rem;
}

.g5-section-desc {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.7;
}

.g5-overview-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 3rem;
    align-items: start;
}

.g5-overview-lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: #F5F5F5;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.g5-overview-body {
    font-size: 0.9375rem;
    color: #A3A3A3;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.g5-stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    margin-top: 2.5rem;
}

.g5-stat-item {
    background: #141414;
    padding: 1.5rem 1.25rem;
    text-align: center;
    transition: background 0.15s;
}

.g5-stat-item:hover { background: rgba(230,57,70,0.06); }

.g5-stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: "JetBrains Mono", monospace;
    color: #E63946;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.g5-stat-lbl {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.g5-sidebar {
    position: sticky;
    top: 135px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.g5-sidebar-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.g5-sidebar-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6B7280;
    margin-bottom: 1rem;
}

.g5-facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.g5-facts-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8125rem;
}

.g5-facts-list li:last-child { border-bottom: none; }
.g5-facts-list li span { color: #6B7280; flex-shrink: 0; }

.g5-facts-list li strong {
    color: #F5F5F5;
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
    font-size: 0.78rem;
    text-align: right;
}

.g5-sidebar-cta {
    background: linear-gradient(135deg, rgba(230,57,70,0.08), rgba(230,57,70,0.04));
    border-color: rgba(230,57,70,0.2);
}

.g5-sidebar-cta-body {
    font-size: 0.83rem;
    color: #A3A3A3;
    line-height: 1.6;
    margin-bottom: 1.125rem;
}

.g5-sidebar-cta .g5-btn {
    width: 100%;
    justify-content: center;
}

.g5-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.g5-feat-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.g5-feat-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #E63946;
    opacity: 0;
    transition: opacity 0.2s;
}

.g5-feat-card:hover {
    border-color: rgba(230,57,70,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.g5-feat-card:hover::after { opacity: 1; }

.g5-feat-icon {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.125rem;
    color: #E63946;
    transition: all 0.2s;
}

.g5-feat-card:hover .g5-feat-icon {
    background: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.25);
}

.g5-feat-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 0.625rem;
    letter-spacing: -0.02em;
}

.g5-feat-desc {
    font-size: 0.875rem;
    color: #A3A3A3;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.g5-feat-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.g5-feat-tag {
    padding: 0.2rem 0.55rem;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.69rem;
    color: #6B7280;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
}

.g5-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.g5-spec-group {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    overflow: hidden;
}

.g5-spec-group-full { grid-column: 1 / -1; }

.g5-spec-group-head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.9rem 1.25rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #A3A3A3;
}

.g5-spec-group-icon {
    width: 28px;
    height: 28px;
    background: rgba(230,57,70,0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E63946;
    flex-shrink: 0;
}

.g5-spec-table { display: flex; flex-direction: column; }

.g5-spec-row {
    display: grid;
    grid-template-columns: 210px 1fr;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.12s;
}

.g5-spec-row:last-child { border-bottom: none; }
.g5-spec-row:hover { background: rgba(255,255,255,0.02); }

.g5-spec-name {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #A3A3A3;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
}

.g5-spec-val {
    padding: 0.875rem 1.25rem;
    font-size: 0.8125rem;
    color: #D4D4D4;
    font-family: "JetBrains Mono", monospace;
    display: flex;
    align-items: center;
}

.g5-spec-val--hl {
    color: #E63946;
    font-weight: 600;
}

.g5-vendor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.g5-vendor-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.2s;
}

.g5-vendor-card:hover {
    border-color: rgba(230,57,70,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.g5-vendor-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.125rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.g5-vendor-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: "JetBrains Mono", monospace;
    flex-shrink: 0;
}

.g5-vendor-logo--xi { background: linear-gradient(135deg, #7C3AED, #5B21B6); }
.g5-vendor-logo--al { background: linear-gradient(135deg, #1D4ED8, #1E40AF); }
.g5-vendor-logo--mc { background: linear-gradient(135deg, #059669, #047857); }
.g5-vendor-logo--la { background: linear-gradient(135deg, #D97706, #B45309); }

.g5-vendor-name {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #F5F5F5;
}

.g5-vendor-tool {
    font-size: 0.73rem;
    color: #6B7280;
    font-family: "JetBrains Mono", monospace;
    margin-top: 0.15rem;
}

.g5-vendor-families {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1.125rem;
}

.g5-vendor-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.g5-vendor-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #A3A3A3;
    line-height: 1.5;
}

.g5-vendor-features li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E63946;
    flex-shrink: 0;
    margin-top: 6px;
}

.g5-asic-banner {
    background: linear-gradient(135deg, rgba(230,57,70,0.07), rgba(230,57,70,0.03));
    border: 1px solid rgba(230,57,70,0.22);
    border-radius: 16px;
    padding: 2rem 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.g5-asic-banner-left {
    display: flex;
    align-items: center;
    gap: 1.125rem;
}

.g5-asic-icon {
    width: 52px;
    height: 52px;
    background: rgba(230,57,70,0.12);
    border: 1px solid rgba(230,57,70,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E63946;
    flex-shrink: 0;
}

.g5-asic-title {
    font-size: 1rem;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 0.25rem;
}

.g5-asic-sub {
    font-size: 0.8375rem;
    color: #A3A3A3;
}

.g5-asic-nodes {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.g5-asic-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    padding: 0.625rem 0.875rem;
    background: rgba(230,57,70,0.08);
    border: 1px solid rgba(230,57,70,0.2);
    border-radius: 10px;
    min-width: 62px;
    transition: all 0.15s;
    cursor: default;
}

.g5-asic-node:hover {
    background: rgba(230,57,70,0.15);
    transform: translateY(-2px);
}

.g5-asic-node-nm {
    font-size: 0.9rem;
    font-weight: 800;
    font-family: "JetBrains Mono", monospace;
    color: #E63946;
}

.g5-asic-node-use {
    font-size: 0.6rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
}

.g5-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
}

.g5-app-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 1.5rem 1.375rem;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.g5-app-card:hover {
    border-color: rgba(230,57,70,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    transform: translateY(-3px);
}

.g5-app-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    margin-bottom: 1rem;
    transition: all 0.2s;
}

.g5-app-card:hover .g5-app-icon {
    background: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.25);
    color: #E63946;
}

.g5-app-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #F5F5F5;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.g5-app-desc {
    font-size: 0.8125rem;
    color: #A3A3A3;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.g5-app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.g5-app-tags span {
    padding: 0.18rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 0.67rem;
    color: #6B7280;
    font-family: "JetBrains Mono", monospace;
    font-weight: 500;
}

.g5-deliv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.g5-deliv-card {
    background: #141414;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.875rem;
    transition: all 0.2s;
}

.g5-deliv-card:hover {
    border-color: rgba(230,57,70,0.25);
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
}

.g5-deliv-head {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.375rem;
    padding-bottom: 1.125rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.g5-deliv-num {
    width: 36px;
    height: 36px;
    background: rgba(230,57,70,0.1);
    border: 1px solid rgba(230,57,70,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 800;
    font-family: "JetBrains Mono", monospace;
    color: #E63946;
    flex-shrink: 0;
}

.g5-deliv-head h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #F5F5F5;
}

.g5-deliv-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.g5-deliv-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: #A3A3A3;
    line-height: 1.5;
}

.g5-deliv-check {
    width: 16px;
    height: 16px;
    stroke: #E63946;
    flex-shrink: 0;
    margin-top: 1px;
}

.g5-cta-band {
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 4.5rem 0;
    position: relative;
    overflow: hidden;
}

.g5-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(230,57,70,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230,57,70,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.g5-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.g5-cta-h {
    font-size: clamp(1.625rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #F5F5F5;
    margin-bottom: 0.625rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.g5-cta-p {
    font-size: 1rem;
    color: #6B7280;
    max-width: 460px;
    line-height: 1.7;
}

.g5-cta-btns {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.g5-cta-btns .g5-btn--outline {
    background: rgba(255,255,255,0.05);
    color: #D4D4D4;
    border-color: rgba(255,255,255,0.12);
}

.g5-cta-btns .g5-btn--outline:hover {
    background: rgba(255,255,255,0.09);
    color: #F5F5F5;
    border-color: rgba(255,255,255,0.25);
}

.g5-cta-btns .g5-btn--ghost {
    background: transparent;
    color: #6B7280;
    border-color: rgba(255,255,255,0.08);
}

.g5-cta-btns .g5-btn--ghost:hover { color: #A3A3A3; }

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 1100px) {
    .g5-hero-inner { grid-template-columns: 1fr; }
    .g5-spec-card { max-width: 520px; }
    .g5-kpi-grid { grid-template-columns: repeat(4, 1fr); }
    .g5-app-grid { grid-template-columns: repeat(2, 1fr); }
    .g5-features-grid { grid-template-columns: repeat(2, 1fr); }
    .g5-specs-grid { grid-template-columns: 1fr; }
    .g5-spec-group-full { grid-column: 1; }
}

@media (max-width: 860px) {
    .g5-hero { padding: 80px 0 50px; }
    .g5-overview-grid { grid-template-columns: 1fr; }
    .g5-sidebar { position: static; }
    .g5-stat-strip { grid-template-columns: repeat(2, 1fr); }
    .g5-vendor-grid { grid-template-columns: 1fr; }
    .g5-spec-row { grid-template-columns: 170px 1fr; }
    .g5-deliv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .g5-hero { padding: 72px 0 40px; }
    .g5-hero-title { font-size: 2.25rem; }
    .g5-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .g5-features-grid { grid-template-columns: 1fr; }
    .g5-app-grid { grid-template-columns: 1fr; }
    .g5-cta-inner { flex-direction: column; }
    .g5-cta-btns { flex-direction: column; width: 100%; }
    .g5-cta-btns .g5-btn { width: 100%; justify-content: center; }
    .g5-spec-row { grid-template-columns: 1fr; }
    .g5-spec-name { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .g5-asic-banner { flex-direction: column; align-items: flex-start; }
}
