/* ================= Telemetry Hub (Redesigned) ================= */
.telemetry-hub {
    padding: 8rem 0;
    position: relative;
}

.hub-header {
    text-align: center;
    margin-bottom: 4rem;
}

.hub-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-secondary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hub-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hub-subtitle {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Hub Dashboard Layout */
.hub-dashboard {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 600px;
    overflow: hidden;
    background: rgba(16, 22, 35, 0.4);
}

.hub-sidebar {
    background: rgba(0, 0, 0, 0.2);
    border-right: 1px solid var(--glass-border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
}

.hs-metric {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
    width: 100%;
    cursor: pointer;
}

.hs-metric:hover:not(.active) {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
    transform: translateX(4px);
}

.hs-metric.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: inset 0 0 15px rgba(59, 130, 246, 0.05);
}

.hs-metric i {
    font-size: 1.4rem;
    color: var(--text-muted);
    width: 24px;
    text-align: center;
    transition: var(--transition);
}

.hs-metric:hover i {
    color: var(--text-main);
}

.hs-metric.active i {
    color: var(--accent-secondary);
}

.hsm-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.hsm-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hsm-info strong {
    font-size: 1.1rem;
    color: var(--text-main);
}

/* ================= Global Map (Redesigned) ================= */
.global-map {
    padding: 8rem 0;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    background: rgba(10, 14, 23, 0.4);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 1rem;
}

.map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.map-connections {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.conn-line {
    fill: none;
    stroke: rgba(16, 185, 129, 0.3);
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 3s linear forwards infinite;
}

.conn-line.delay-1 {
    animation-delay: 1s;
}

.conn-line.delay-2 {
    animation-delay: 2s;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.region-node {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.region-node .ping {
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    position: relative;
}

.region-node .ping::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #10b981;
    border-radius: 50%;
    animation: ping-anim 2s ease-out infinite;
}

@keyframes ping-anim {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

.region-node span {
    font-size: 0.75rem;
    font-family: monospace;
    font-weight: bold;
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
    background: rgba(10, 14, 23, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 11;
}

/* Fix overlapping overlay */
.global-overlay {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 200px;
    padding: 1.5rem;
    z-index: 20;
    background: rgba(16, 22, 35, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    pointer-events: none;
}

.us-east {
    top: 35%;
    left: 25%;
}

.eu-west {
    top: 25%;
    left: 48%;
}

.ap-south {
    top: 60%;
    left: 75%;
}

.sa-east {
    top: 75%;
    left: 30%;
}

.go-header {
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.go-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
}

.go-row span.success {
    color: #10b981;
    font-weight: 700;
}

.go-row span.primary {
    color: var(--accent-secondary);
    font-weight: 700;
}

/* Hub Main Content */
.hub-main-content {
    padding: 3rem;
    background: linear-gradient(135deg, transparent, rgba(59, 130, 246, 0.03));
    min-width: 0;
}

.metrics-luxe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.m-luxe-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.5rem;
    transition: var(--transition);
    min-width: 0;
}

.m-luxe-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.mlc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.mlc-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.cpu-grad {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
}

.mem-grad {
    background: linear-gradient(135deg, #8b5cf6, #d946ef);
}

.net-grad {
    background: linear-gradient(135deg, #0ea5e9, #2dd4bf);
}

.res-grad {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.mlc-header span {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
    white-space: nowrap;
}

.mlc-body {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.mlc-body h3 {
    font-size: 2.2rem;
    font-family: monospace;
    white-space: nowrap;
}

.mlc-body .unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 0.2rem;
}

.mlc-trend {
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.mlc-trend.up {
    color: #10b981;
}

.mlc-trend.down {
    color: #f43f5e;
}

.mlc-trend.stable {
    color: var(--accent-secondary);
}

/* Mini Area Chart simulation */
.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.mc-bar {
    flex: 1;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 2px 2px 0 0;
    transition: height 0.5s ease;
}

.m-luxe-card:hover .mc-bar {
    background: rgba(59, 130, 246, 0.4);
}

/* Hub Gauges */
.hub-visual-gauges {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.gauge-luxe-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
    min-width: 200px;
}

.gl-svg-box {
    position: relative;
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.luxe-gauge {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.base-ring {
    stroke: rgba(255, 255, 255, 0.05);
}

.active-ring {
    transition: stroke-dashoffset 1s ease;
}

.cpu-ring {
    stroke: var(--accent-primary);
    filter: drop-shadow(0 0 5px var(--accent-primary));
}

.mem-ring {
    stroke: #d946ef;
    filter: drop-shadow(0 0 5px #d946ef);
}

.cost-ring {
    stroke: #10b981;
    filter: drop-shadow(0 0 5px #10b981);
}

.gl-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: 800;
    font-family: monospace;
}

.gl-info {
    min-width: 0;
}

.gl-info h4 {
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gl-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ================= Integrations Bar ================= */
.integrations-bar {
    padding: 3rem 0;
    background: rgba(16, 22, 35, 0.3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.int-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.5;
    transition: var(--transition);
}

.int-grid:hover {
    opacity: 0.8;
}

.int-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-muted);
}

.int-item i {
    font-size: 1.8rem;
}

.int-item span {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.int-stack {
    display: flex;
    flex-direction: column;
}

.int-stack strong {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1;
}

.int-stack span {
    font-size: 0.7rem;
    font-weight: 500;
}

/* ================= Platform Features (Redesigned) ================= */
.platform-features {
    padding: 8rem 0;
    position: relative;
}

.features-luxe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.luxe-feature-card {
    position: relative;
    padding: 3rem 2.5rem;
    border-radius: 24px;
    background: rgba(16, 22, 35, 0.4);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.luxe-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(16, 22, 35, 0.6);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.lf-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.luxe-feature-card:hover .lf-overlay {
    opacity: 1;
}

.lf-content {
    position: relative;
    z-index: 2;
}

.lf-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 2rem;
    transition: transform 0.5s ease;
}

.luxe-feature-card:hover .lf-icon {
    transform: scale(1.1) rotate(5deg);
}

.lf-icon.color-1 {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.lf-icon.color-2 {
    background: rgba(14, 165, 233, 0.1);
    color: #0ea5e9;
}

.lf-icon.color-3 {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.lf-icon.color-4 {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.lf-icon.color-5 {
    background: rgba(217, 70, 239, 0.1);
    color: #d946ef;
}

.lf-icon.color-6 {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.lf-tag {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.luxe-feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.luxe-feature-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.lf-footer-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-secondary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.luxe-feature-card:hover .lf-footer-link {
    opacity: 1;
    transform: translateX(0);
}

/* ================= Luxe Onboarding Section ================= */
.onboarding-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 40%);
}

.luxe-roadmap {
    position: relative;
    margin-top: 4rem;
    padding-left: 2rem;
}

.roadmap-line {
    position: absolute;
    top: 0;
    left: 2.5rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(59, 130, 246, 0), 
        rgba(59, 130, 246, 0.5) 20%, 
        rgba(59, 130, 246, 0.5) 80%, 
        rgba(59, 130, 246, 0));
}

.roadmap-step {
    display: flex;
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 44px;
    height: 44px;
    background: #0f172a;
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 800;
    font-family: monospace;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.roadmap-step:hover .step-dot,
.step-dot.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.step-card {
    padding: 2rem;
    flex: 1;
    transition: all 0.4s ease;
}

.roadmap-step:hover .step-card,
.step-card.active {
    background: rgba(16, 22, 35, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Engine Visual */
.engine-visual-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.engine-core {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.core-brain {
    font-size: 3rem;
    color: #fff;
    z-index: 10;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8));
}

.core-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: ring-pulse 4s infinite linear;
}

.core-rings .ring:nth-child(1) { width: 100px; height: 100px; animation-delay: 0s; }
.core-rings .ring:nth-child(2) { width: 160px; height: 160px; animation-delay: 1s; }
.core-rings .ring:nth-child(3) { width: 220px; height: 220px; animation-delay: 2s; }

@keyframes ring-pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

.orbital-nodes .node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    animation: orbit 20s infinite linear;
}

.node:hover {
    color: var(--text-main);
    border-color: var(--accent-secondary);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.node-1 { animation-delay: 0s; --radius: 140px; }
.node-2 { animation-delay: -5s; --radius: 140px; }
.node-3 { animation-delay: -10s; --radius: 140px; }
.node-4 { animation-delay: -15s; --radius: 140px; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(var(--radius)) rotate(0deg); }
    to { transform: rotate(360deg) translateX(var(--radius)) rotate(-360deg); }
}

.active-connection-path {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.pulse-dot {
    animation: travel 4s infinite linear;
}

@keyframes travel {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}

.active-connection-path circle.pulse-dot {
    offset-path: circle(140px at 200px 200px);
}

@media (max-width: 992px) {
    .onboarding-luxe .luxe-split-grid {
        grid-template-columns: 1fr;
    }
    .engine-visual-container {
        display: none;
    }
}

/* ================= Industry Use Cases (Luxe Redesign) ================= */
.use-cases-luxe {
    padding: 8rem 0;
    position: relative;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05), transparent 40%);
}

.uc-luxe-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.uc-pill-selector {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.luxe-pill {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxe-pill i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.luxe-pill:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    transform: translateY(-2px);
}

.luxe-pill.active {
    background: var(--accent-primary);
    color: #fff;
    border-color: var(--accent-primary);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.luxe-pill.active i {
    transform: scale(1.1);
}

.uc-luxe-content {
    background: rgba(16, 22, 35, 0.4);
    border-radius: 32px;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.uc-luxe-pane {
    display: none;
    padding: 4rem;
    animation: pane-fade 0.6s ease forwards;
}

.uc-luxe-pane.active {
    display: block;
}

@keyframes pane-fade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uc-pane-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.uc-pane-badge {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    color: var(--accent-secondary);
    margin-bottom: 1.5rem;
}

.uc-pane-text h3 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.uc-pane-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.uc-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.uc-spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.uc-spec-item strong {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.uc-spec-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Pane Visuals */
.mini-stats-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.msc-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
}

.msc-chart {
    height: 120px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-top: 2rem;
}

.msc-bar {
    flex: 1;
    background: var(--accent-primary);
    border-radius: 4px;
    opacity: 0.2;
    transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.uc-luxe-pane.active .msc-bar {
    opacity: 0.6;
}

@media (max-width: 992px) {
    .uc-pane-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .uc-pill-selector {
        gap: 0.8rem;
    }

    .uc-specs-grid {
        justify-content: center;
    }

    .uc-luxe-pane {
        padding: 3rem 2rem;
    }
}

/* ================= Developer Experience (Luxe Redesign) ================= */
.devex-luxe {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.luxe-split-grid {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 6rem;
    align-items: center;
}

.devex-feature-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.df-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.df-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.df-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.df-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Dev Deck layered visual */
.dev-deck {
    position: relative;
    height: 450px;
}

.deck-layer {
    position: absolute;
    width: 100%;
}

.terminal-luxe {
    top: 0;
    left: 0;
    z-index: 1;
    background: #0f172a;
}

.api-luxe {
    top: 180px;
    left: 80px;
    z-index: 2;
    width: 320px;
}

.term-line {
    font-family: monospace;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.term-line.muted {
    color: #64748b;
}

.term-line.success {
    color: #10b981;
}

.api-luxe pre {
    font-size: 0.8rem;
    color: #94a3b8;
}

@media (max-width: 1100px) {
    .luxe-split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .df-item {
        flex-direction: column;
        align-items: center;
    }

    .dev-deck {
        display: none;
    }
}

/* ================= Enterprise Security (Luxe Redesigned) ================= */
.security-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.03), transparent 70%);
}

.sec-luxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.sec-luxe-card {
    padding: 5rem 3rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(16, 22, 35, 0.4);
}

.slc-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.sec-luxe-card:hover .slc-glow {
    opacity: 1;
}

.sec-luxe-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    background: rgba(16, 22, 35, 0.7);
}

.slc-icon {
    width: 90px;
    height: 90px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: var(--accent-secondary);
    margin-bottom: 3.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 5;
}

.slc-icon i {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.sec-luxe-card:hover .slc-icon {
    transform: scale(1.15) rotate(-8deg);
    background: var(--accent-primary);
    color: #fff;
    border-color: #fff;
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
}

.sec-luxe-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.8px;
    font-weight: 800;
}

.sec-luxe-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.9;
}

@media (max-width: 1024px) {
    .sec-luxe-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sec-luxe-card {
        padding: 4rem 2rem;
    }
}

/* ================= Neural ML Core (Luxe Redesigned) ================= */
.ml-core-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.03), transparent 60%);
}

.engine-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.e-step {
    padding: 2rem 2.5rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    border-color: rgba(59, 130, 246, 0.1);
}

.e-step:hover {
    background: rgba(16, 22, 35, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateX(10px);
}

.es-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.es-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
}

.es-tag {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.e-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.e-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 500px;
}

/* Neural Visual Box */
.neural-visual-box {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.neural-core-sphere {
    position: relative;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sphere-glow {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent-primary);
    filter: blur(40px);
    opacity: 0.3;
    animation: core-pulse 4s infinite ease-in-out;
}

@keyframes core-pulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.2); }
}

.neural-core-sphere i {
    font-size: 3rem;
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.neural-orbits {
    position: absolute;
    width: 400px;
    height: 400px;
    perspective: 1000px;
}

.n-orbit {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 50%;
}

.axis-x { transform: rotateX(70deg); animation: rotate-orbit 10s infinite linear; }
.axis-y { transform: rotateY(70deg); animation: rotate-orbit 8s infinite linear reverse; }
.axis-z { transform: rotateZ(70deg); animation: rotate-orbit 12s infinite linear; }

@keyframes rotate-orbit {
    from { transform: rotate(0deg) rotateX(70deg); }
    to { transform: rotate(360deg) rotateX(70deg); }
}

.n-node {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--accent-secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-secondary);
}

.node-a { top: 0; left: 50%; offset-path: circle(200px at center); animation: travel 5s infinite linear; }
.node-b { top: 0; left: 50%; offset-path: circle(200px at center); animation: travel 7s infinite linear reverse; }

.status-indicator {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(10, 14, 23, 0.8);
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.status-indicator span {
    font-size: 0.75rem;
    font-weight: 800;
    color: #10b981;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .neural-visual-box {
        display: none;
    }
    .ml-core-luxe .luxe-split-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .e-step {
        text-align: left;
    }
}

/* ================= Trusted by Cloud Leaders (Luxe Redesigned) ================= */
.testimonials-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.02), transparent 70%);
}

.testimonials-luxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.testi-luxe-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.testi-luxe-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 22, 35, 0.6);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.tlc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.tlc-quote-icon {
    font-size: 2rem;
    color: var(--accent-secondary);
    opacity: 0.3;
}

.tlc-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    font-size: 0.8rem;
}

.tlc-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.tlc-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.tlc-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.tlc-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tlc-badge {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #10b981;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Stats */
.testi-footer-stats {
    display: flex;
    justify-content: center;
    gap: 6rem;
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.ts-item {
    text-align: center;
}

.ts-item strong {
    display: block;
    font-size: 2.2rem;
    color: var(--text-gradient);
    background: linear-gradient(135deg, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.ts-item span {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1100px) {
    .testimonials-luxe-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 5rem auto 0;
    }
    
    .testi-footer-stats {
        flex-wrap: wrap;
        gap: 3rem;
    }
}

/* ================= Engineering Insights (Luxe Redesigned) ================= */
.insights-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.02), transparent 70%);
}

.insights-luxe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 5rem;
}

.insight-luxe-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.insight-luxe-card:hover {
    background: rgba(16, 22, 35, 0.6);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.ilc-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.ilc-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    line-height: 1.4;
    letter-spacing: -0.5px;
}

.ilc-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 3rem;
    flex-grow: 1;
}

.ilc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.ilc-read {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-secondary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: gap 0.3s ease;
}

.insight-luxe-card:hover .ilc-read {
    gap: 1.2rem;
}

.ilc-time {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .insights-luxe-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 5rem auto 0;
    }
}

/* ================= FAQ Section (Luxe Redesigned) ================= */
.faq-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.02), transparent 70%);
}

.faq-luxe-list {
    max-width: 850px;
    margin: 5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-luxe-item {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden;
}

.faq-luxe-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(16, 22, 35, 0.6);
}

.faq-luxe-header {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.fl-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.fl-question {
    font-size: 1.2rem;
    color: var(--text-main);
    flex-grow: 1;
}

.fl-arrow {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.4s ease;
}

.faq-luxe-item.active .fl-arrow {
    transform: rotate(45deg);
    color: var(--accent-secondary);
}

.faq-luxe-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 2.5rem 0 6.5rem; /* Aligned with question text */
}

.faq-luxe-item.active .faq-luxe-answer {
    max-height: 200px;
    opacity: 1;
    padding-bottom: 2.5rem;
}

.faq-luxe-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.faq-luxe-footer {
    text-align: center;
    margin-top: 5rem;
}

.faq-luxe-footer p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .faq-luxe-header {
        padding: 1.5rem;
        gap: 1rem;
    }
    .faq-luxe-answer {
        padding: 0 1.5rem 1.5rem 4rem;
    }
    .fl-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* ================= Contact Section (Concierge Luxe) ================= */
.contact-luxe {
    padding: 10rem 0;
    position: relative;
    background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.02), transparent 70%);
}

.hub-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4rem;
}

.cm-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
}

.cm-card:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(16, 22, 35, 0.6);
}

.cm-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent-secondary);
}

.cm-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.cm-text span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact Form Luxe */
.contact-luxe-form {
    padding: 4rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.contact-luxe-form input,
.contact-luxe-form select,
.contact-luxe-form textarea {
    width: 100%;
    background: rgba(10, 14, 23, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.2rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-luxe-form input:focus,
.contact-luxe-form select:focus,
.contact-luxe-form textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: rgba(10, 14, 23, 0.8);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.btn-full {
    width: 100%;
    padding: 1.2rem;
    font-size: 1rem;
}

@media (max-width: 1100px) {
    .hub-split-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .contact-luxe-form {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ================= Final CTA Section (Enterprise Luxe) ================= */
.final-cta-luxe {
    padding: 8rem 0;
}

.cta-luxe-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(16, 22, 35, 0.8), rgba(10, 14, 23, 0.9));
}

.cl-content {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.cl-title {
    font-size: 3rem;
    margin: 1.5rem 0;
    color: var(--text-main);
    letter-spacing: -1.5px;
}

.cl-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

.cl-actions {
    display: flex;
    gap: 1.5rem;
}

.cl-visual {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cl-orb {
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, var(--accent-primary), transparent 70%);
    filter: blur(40px);
    opacity: 0.2;
    animation: orb-float 6s infinite ease-in-out;
}

.cl-visual i {
    font-size: 6rem;
    color: var(--accent-secondary);
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.4));
    animation: rocket-float 4s infinite ease-in-out;
}

@keyframes orb-float {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 0.4; }
}

@keyframes rocket-float {
    0%, 100% { transform: translateY(0) rotate(5deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

/* ================= Footer Nexus (Premium Redesign) ================= */
.footer-nexus {
    background: #05080f;
    padding: 10rem 0 5rem;
    border-top: 1px solid var(--glass-border);
}

.nexus-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
    margin-bottom: 8rem;
}

.nexus-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 2rem;
}

.nexus-logo img {
    height: 40px;
    width: auto;
}

.nexus-tagline {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 350px;
    font-weight: 400;
}

.nexus-status-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: 100px;
    width: fit-content;
    margin-bottom: 3rem;
}

.ns-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
}

.nexus-status-bar span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #10b981;
    letter-spacing: 0.5px;
}

.nexus-socials {
    display: flex;
    gap: 1.5rem;
}

.nexus-socials a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nexus-socials a:hover {
    color: var(--accent-secondary);
    border-color: var(--accent-secondary);
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.nexus-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.nl-col h4 {
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.nl-col ul {
    list-style: none;
    padding: 0;
}

.nl-col ul li {
    margin-bottom: 1.2rem;
}

.nl-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nl-col ul li a:hover {
    color: var(--accent-secondary);
}

.nexus-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
}

.nb-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.nb-links {
    display: flex;
    gap: 3rem;
}

.nb-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nb-links a:hover {
    color: var(--text-main);
}

@media (max-width: 1200px) {
    .nexus-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
    }
    .nexus-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .cta-luxe-card {
        padding: 3rem;
        flex-direction: column;
        text-align: center;
    }
    .cl-content {
        max-width: 100%;
        margin-bottom: 4rem;
    }
    .cl-actions {
        justify-content: center;
        flex-direction: column;
    }
    .nexus-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}