.intent-warning-banner {
    background: linear-gradient(135deg, #1a1520 0%, #1e1428 100%);
    border-bottom: 1px solid rgba(251, 191, 36, 0.25);
    padding: 0.75rem 1.25rem;
    z-index: 100;
}
.intent-warning-banner.is-hidden {
    display: none;
}
.intent-warning-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
.intent-warning-icon {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.intent-warning-text {
    flex: 1;
    color: #e5e7eb;
    font-size: 0.85rem;
    line-height: 1.5;
}
.intent-warning-text strong {
    color: #fbbf24;
    font-size: 0.9rem;
    display: block;
}
.intent-warning-text p {
    margin: 0.25rem 0 0;
    color: #9ca3af;
}
.intent-warning-close {
    background: none;
    border: none;
    color: #fbbf24;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
    flex-shrink: 0;
    align-self: flex-start;
}
.intent-warning-close:hover {
    opacity: 1;
}
@media (max-width: 640px) {
    .intent-warning-banner {
        padding: 0.65rem 0.75rem;
    }
    .intent-warning-inner {
        gap: 0.5rem;
    }
    .intent-warning-text {
        font-size: 0.78rem;
    }
    .intent-warning-text strong {
        font-size: 0.82rem;
    }
    .intent-warning-close {
        font-size: 1.3rem;
        padding: 0.1rem 0.3rem;
    }
}

@keyframes hp-entrance {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hp-cascade {
    opacity: 0;
    animation: hp-entrance 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.hp-cascade-d1 { animation-delay: 0.04s; }
.hp-cascade-d2 { animation-delay: 0.10s; }
.hp-cascade-d3 { animation-delay: 0.16s; }
.hp-cascade-d4 { animation-delay: 0.22s; }
.hp-cascade-d5 { animation-delay: 0.28s; }
.hp-cascade-d6 { animation-delay: 0.34s; }
.hp-cascade-d7 { animation-delay: 0.40s; }
.hp-cascade-d8 { animation-delay: 0.48s; }

main {
    background: linear-gradient(180deg, #080c10 0%, #0a0f14 25%, #0d1219 50%, #111820 75%, #151d27 100%);
}

.hp-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 1.5rem 2rem 3rem;
}

.hp-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 92, 0, 0.06) 0%, transparent 60%);
    mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 60%, transparent 100%);
    animation: hp-hero-glow 12s ease-in-out infinite alternate;
}

@keyframes hp-hero-glow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

.hp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 92, 0, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 0, 0.015) 1px, transparent 1px);
    background-size: 56px 56px;
    opacity: 0.6;
    mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 50%, transparent 100%);
    animation: hp-grid-pulse 8s ease-in-out infinite;
}

@keyframes hp-grid-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hp-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hp-hero-content {
    max-width: 540px;
}

.hp-hero-badge-row {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.hp-hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 92, 0, 0.1);
    border: 1px solid rgba(255, 92, 0, 0.25);
    color: #ff8a3d;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

.hp-brand {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hp-brand-scrap {
    color: #ff5c00;
}

.hp-brand-line {
    color: rgba(255, 255, 255, 0.7);
}

.hp-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.hp-hero-accent {
    background: linear-gradient(135deg, #ff5c00 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hp-hero-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.7;
    margin: 0 0 1.75rem;
}

.hp-hero-stats {
    display: flex;
    align-items: stretch;
    gap: 2rem;
    margin-bottom: 2rem;
}

.hp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.hp-stat-value-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hp-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.hp-stat-label {
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.35rem;
}

.hp-stat-dot-live {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
    animation: hp-live-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes hp-live-pulse {
    0%, 100% { box-shadow: 0 0 6px rgba(16, 185, 129, 0.4); opacity: 1; }
    50%      { box-shadow: 0 0 16px rgba(16, 185, 129, 0.8), 0 0 32px rgba(16, 185, 129, 0.3); opacity: 0.85; }
}

.hp-stat-active .hp-stat-value {
    color: #10b981;
}

.hp-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

.hp-trust-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    margin-right: 0.5rem;
    vertical-align: middle;
    animation: hp-pulse 2s ease-in-out infinite;
}

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

.hp-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hp-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 28px rgba(255, 92, 0, 0.4);
}

.hp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 92, 0, 0.5);
}

.hp-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hp-btn-secondary:hover {
    border-color: rgba(255, 92, 0, 0.5);
    color: #ff8c42;
}

.hp-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hp-mockup {
    background: rgba(26, 29, 41, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    min-height: 300px;
    max-width: 480px;
    cursor: default;
}

.hp-mockup-sidebar {
    width: 130px;
    flex-shrink: 0;
    background: rgba(15, 17, 24, 0.9);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.75rem 0;
}

.hp-mockup-server {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
    color: #6b7280;
}

.hp-mockup-server-icon {
    width: 24px;
    height: 24px;
    background: #3a3f51;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
}

.hp-mockup-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    color: #9ca3af;
}

.hp-mockup-nav.active {
    color: #ff5c00;
}

.hp-mockup-section,
.hp-mockup-nav-section {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5563;
    padding: 0.75rem 0.75rem 0.35rem;
}

.hp-mockup-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.72rem;
    color: #6b7280;
}

.hp-mockup-main {
    flex: 1;
    padding: 1rem;
    min-width: 0;
}

.hp-mockup-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hp-mockup-breadcrumb {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
}

.hp-mockup-main .hp-mockup-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.hp-mockup-search {
    font-size: 0.75rem;
    color: #6b7280;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1rem;
}

.hp-mockup-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hp-mockup-module {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.65rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
}

.hp-mockup-mod-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255, 92, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: #ff8a3d;
    flex-shrink: 0;
}

.hp-mockup-mod-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.hp-mockup-badge {
    font-size: 0.58rem;
    color: #ff8a3d;
    background: rgba(255, 92, 0, 0.12);
    border-radius: 5px;
    padding: 0.15rem 0.35rem;
    flex-shrink: 0;
    white-space: nowrap;
}

.hp-mockup-module-name {
    font-size: 0.78rem;
    font-weight: 600;
    color: #e5e7eb;
    line-height: 1.2;
    grid-column: 1;
    align-self: start;
}

.hp-mockup-module-desc {
    font-size: 0.65rem;
    color: #6b7280;
    grid-column: 1;
    line-height: 1.3;
    align-self: start;
}

.hp-mockup-toggle {
    grid-row: 1 / -1;
    grid-column: 2;
    align-self: center;
    justify-self: end;
}

.hp-mockup-toggle {
    width: 32px;
    height: 18px;
    background: #374151;
    border-radius: 999px;
    position: relative;
}

.hp-mockup-toggle.on {
    background: #10b981;
}

.hp-mockup-toggle.on::after {
    content: '';
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
}

.hp-mockup-toggle:not(.on)::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #9ca3af;
    border-radius: 50%;
}

.hp-status-inline {
    margin-top: 1.25rem;
}

.hp-status-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hp-status-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
}

.hp-status-bots {
    display: flex;
    gap: 1.25rem;
}

.hp-status-bot {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.hp-status-bot small {
    font-size: 0.7rem;
    color: #6b7280;
}

.hp-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.hp-status-dot.loading {
    background: #6b7280;
    animation: hp-dot-pulse 1.5s ease-in-out infinite;
}

.hp-status-dot.online {
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.hp-status-dot.offline {
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.hp-status-dot.degraded {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}

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

.hp-status-link {
    font-size: 0.8rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.hp-status-link:hover {
    color: #ff5c00;
}

.hp-features {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}


.hp-features .container,
.hp-how .container,
.hp-usecases .container,
.hp-whyus .container,
.hp-cta .container {
    position: relative;
    z-index: 1;
}


.hp-features-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.hp-features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 auto 3rem;
    max-width: 520px;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.hp-feature-card {
    background: rgba(20, 24, 35, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.2s ease;
}

.hp-feature-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    transform: translateY(-4px);
}

.hp-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.2) 0%, rgba(255, 92, 0, 0.05) 100%);
    border-radius: 12px;
    color: #ff5c00;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.hp-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem;
}

.hp-feature-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.hp-feature-hidden {
    display: none;
}

.hp-feature-hidden.show {
    display: block;
}

.hp-feature-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hp-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hp-btn-more:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hp-btn-features {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
}

.hp-btn-features:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 92, 0, 0.4);
}

.hp-cta {
    position: relative;
    padding: 5rem 2rem;
    overflow: hidden;
}

.hp-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 92, 0, 0.06) 0%, transparent 60%);
}

.hp-cta .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hp-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.hp-cta-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    margin: 0 0 2rem;
}

.hp-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hp-btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 8px 28px rgba(255, 92, 0, 0.4);
}

.hp-btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 92, 0, 0.5);
}

.hp-btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #e5e7eb;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hp-btn-cta-secondary:hover {
    border-color: rgba(255, 92, 0, 0.5);
    color: #ff8c42;
}

/* ------------------------------------------------------------------ */
/*  Discord community widget (inside .hp-cta)                          */
/* ------------------------------------------------------------------ */
.hp-cta-discord {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hp-cta-discord-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #a1a1aa;
    margin: 0;
}

.hp-cta-discord-label i {
    color: #5865F2;
    font-size: 1.1rem;
}

.hp-cta-discord-frame {
    position: relative;
    width: min(100%, 380px);
    min-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    background: #1f1f23;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.hp-cta-discord-frame iframe {
    display: block;
    width: 100%;
    height: 500px;
    border: 0;
    background: transparent;
}

.hp-cta-discord-fallback,
.hp-cta-discord-invite {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #8b8b95;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.hp-cta-discord-invite:hover,
.hp-cta-discord-fallback:hover {
    color: #5865F2;
    background: rgba(88, 101, 242, 0.08);
}

/* ------------------------------------------------------------------ */
/*  Vote + review card grid (under the Discord widget)                 */
/* ------------------------------------------------------------------ */
.hp-cta-vote {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.hp-cta-vote-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #a1a1aa;
    margin: 0 0 1.75rem;
}

.hp-cta-vote-label i {
    color: #ff5c00;
    font-size: 1rem;
}

.hp-cta-vote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

.hp-cta-vote-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.25rem 1.25rem 1.1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e5e7eb;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease,
                background 0.2s ease, box-shadow 0.2s ease;
}

.hp-cta-vote-card:hover,
.hp-cta-vote-card:focus-visible {
    transform: translateY(-3px);
    border-color: rgba(255, 92, 0, 0.35);
    background: rgba(255, 92, 0, 0.04);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    outline: none;
}

.hp-cta-vote-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
    border-radius: 8px;
    background: #0e0f12;
}

.hp-cta-vote-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: linear-gradient(135deg, rgba(255,92,0,0.15), rgba(255,122,0,0.08));
    border: 1px solid rgba(255, 92, 0, 0.25);
    color: #ff7a00;
}

.hp-cta-vote-card--topgg .hp-cta-vote-card-icon {
    background: linear-gradient(135deg, rgba(255, 212, 59, 0.15), rgba(255, 180, 0, 0.08));
    border-color: rgba(255, 212, 59, 0.3);
    color: #ffd43b;
}

.hp-cta-vote-card--dlgg .hp-cta-vote-card-icon {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(64, 75, 209, 0.08));
    border-color: rgba(88, 101, 242, 0.35);
    color: #818cf8;
}

.hp-cta-vote-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.hp-cta-vote-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.hp-cta-vote-card-desc {
    font-size: 0.88rem;
    color: #9ca3af;
    line-height: 1.45;
}

.hp-cta-vote-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ff7a00;
    transition: gap 0.2s ease;
}

.hp-cta-vote-card:hover .hp-cta-vote-card-cta {
    gap: 0.65rem;
}

.hp-cta-vote-card--topgg .hp-cta-vote-card-cta { color: #ffd43b; }
.hp-cta-vote-card--dlgg  .hp-cta-vote-card-cta { color: #818cf8; }

@media (max-width: 640px) {
    .hp-cta-vote {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    .hp-cta-vote-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hp-hero {
        padding: 1.25rem 1rem 2.5rem;
        min-height: auto;
    }
    .hp-hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
    }
    .hp-hero-content {
        max-width: 100%;
        order: -1;
    }
    .hp-hero-visual {
        order: 1;
        width: 100%;
        max-width: 100%;
        margin-bottom: 0;
    }
    .hp-brand {
        margin-bottom: 0.75rem;
    }
    .hp-hero-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.75rem;
    }
    .hp-hero-subtitle {
        margin-bottom: 1.25rem;
    }
    .hp-hero-stats {
        margin-bottom: 1.25rem;
    }
    .hp-mockup {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        min-height: 200px;
        flex-direction: column;
    }
    .hp-mockup-sidebar {
        width: 100%;
        min-width: 100%;
        flex-shrink: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.5rem;
    }
    .hp-mockup-main {
        flex: 1;
        min-width: 0;
    }
    .hp-status-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 0.75rem;
    }
    .hp-status-label {
        width: 100%;
        text-align: center;
        order: 2;
        margin-top: 0.15rem;
    }
    .hp-features {
        padding: 3rem 1rem;
    }
    .hp-features-title {
        font-size: 1.75rem;
    }
    .hp-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .hp-feature-card {
        padding: 1.5rem;
    }
    .hp-cta {
        padding: 3rem 1rem;
    }
    .hp-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .hp-hero {
        padding: 1rem 0.75rem 2rem;
    }
    .hp-hero-container {
        padding: 0 0.75rem;
        gap: 1rem;
    }
    .hp-hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    .hp-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    .hp-mockup-sidebar {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0.4rem;
    }
    .hp-mockup-server {
        width: 100%;
        order: -1;
    }
    .hp-mockup-nav, .hp-mockup-item {
        flex: 1 1 auto;
        min-width: 0;
    }
    .hp-status-bots {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    .hp-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hp-hero {
        padding: 0.75rem 0.5rem 1.5rem;
    }
    .hp-hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    .hp-stat-divider {
        display: none;
    }
    .hp-hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    .hp-hero-buttons a {
        width: 100%;
        justify-content: center;
    }
    .hp-mockup {
        flex-direction: column;
        min-height: auto;
        max-height: none;
    }
    .hp-mockup-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
        flex-wrap: wrap;
        gap: 0.2rem;
        padding: 0.4rem;
    }
    .hp-mockup-server {
        width: 100%;
    }
    .hp-mockup-nav, .hp-mockup-item {
        padding: 0.35rem 0.4rem;
        font-size: 0.65rem;
    }
    .hp-mockup-section {
        width: 100%;
    }
    .hp-mockup-main {
        padding: 0.6rem;
    }
    .hp-mockup-module {
        padding: 0.45rem 0.5rem;
    }
    .hp-mockup-module-name {
        font-size: 0.7rem;
    }
    .hp-mockup-module-desc {
        font-size: 0.6rem;
    }
    .hp-status-bots {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hp-features {
        padding: 2rem 0.75rem;
    }
    .hp-features-title {
        font-size: 1.5rem;
    }
    .hp-features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .hp-feature-card {
        padding: 1.25rem;
    }
    .hp-feature-actions {
        flex-direction: column;
    }
    .hp-btn-more, .hp-btn-features {
        width: 100%;
        justify-content: center;
    }
    .hp-cta {
        padding: 2rem 0.75rem;
    }
    .hp-cta-title {
        font-size: 1.5rem;
    }
    .hp-cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    .hp-btn-cta-primary, .hp-btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.hp-orbit-art {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: none;
}
.hp-orbit-art:hover { cursor: crosshair; }

.hp-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;

    transform: translate(var(--plx, 0px), var(--ply, 0px));
    transition: transform 0.05s linear;
}
.hp-orbit-ring-1 {
    width: 160px; height: 160px;
    border: 1px solid rgba(255, 92, 0, 0.22);
    animation: hp-ring-spin 18s linear infinite;
}
.hp-orbit-ring-2 {
    width: 280px; height: 280px;
    border: 1px solid rgba(255, 92, 0, 0.10);
    animation: hp-ring-spin 28s linear infinite reverse;
}
.hp-orbit-ring-3 {
    width: 390px; height: 390px;
    border: 1px solid rgba(255, 92, 0, 0.05);
    animation: hp-ring-spin 40s linear infinite;
}
@keyframes hp-ring-spin {
    from { transform: rotate(0deg) translate(var(--plx, 0px), var(--ply, 0px)); }
    to   { transform: rotate(360deg) translate(var(--plx, 0px), var(--ply, 0px)); }
}

.hp-orbit-core {
    position: relative;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, #ff7a2a, #ff3d00 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 0 0 8px rgba(255, 92, 0, 0.12),
                0 0 40px rgba(255, 92, 0, 0.35),
                0 0 80px rgba(255, 92, 0, 0.15);
    z-index: 3;
    animation: hp-core-pulse 3s ease-in-out infinite;
    transform: translate(var(--plx, 0px), var(--ply, 0px));
    transition: transform 0.05s linear;
}
.hp-orbit-core-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,92,0,0.25) 0%, transparent 70%);
    animation: hp-core-pulse 3s ease-in-out infinite 0.4s;
}
@keyframes hp-core-pulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(255,92,0,0.12), 0 0 40px rgba(255,92,0,0.35), 0 0 80px rgba(255,92,0,0.15); }
    50%       { box-shadow: 0 0 0 12px rgba(255,92,0,0.18), 0 0 55px rgba(255,92,0,0.5), 0 0 100px rgba(255,92,0,0.2); }
}

.hp-ob-wrap {
    position: absolute;
    z-index: 4;

}

.hp-ob-1 { top: 28px;     left: 50%; transform: translateX(calc(-50% + var(--plx, 0px))) translateY(var(--ply, 0px)); }
.hp-ob-4 { bottom: 50px;  left: 50%; transform: translateX(calc(-50% + var(--plx, 0px))) translateY(var(--ply, 0px)); }

.hp-ob-2 { top: 80px;        right: 10px;  transform: translate(var(--plx, 0px), var(--ply, 0px)); }
.hp-ob-3 { bottom: 120px;    right: 0;     transform: translate(var(--plx, 0px), var(--ply, 0px)); }
.hp-ob-5 { bottom: 120px;    left: 0;      transform: translate(var(--plx, 0px), var(--ply, 0px)); }
.hp-ob-6 { top: 80px;        left: 10px;   transform: translate(var(--plx, 0px), var(--ply, 0px)); }

.hp-orbit-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem 0.45rem 0.5rem;
    background: rgba(18, 20, 32, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 600;
    color: #e5e7eb;
    animation: hp-float var(--float-dur, 4s) ease-in-out infinite var(--float-del, 0s);
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1),
                box-shadow 0.18s ease,
                border-color 0.18s ease;
    user-select: none;
}
.hp-badge-hover,
.hp-ob-wrap:hover .hp-orbit-badge {
    transform: scale(1.1) translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,92,0,0.35), 0 0 20px rgba(255,92,0,0.2) !important;
    border-color: rgba(255, 92, 0, 0.4) !important;
    animation-play-state: paused;
}
.hp-ob-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 92, 0, 0.18);
    color: #ff7a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    transition: background 0.18s, color 0.18s;
}
.hp-ob-wrap:hover .hp-ob-icon { background: rgba(255,92,0,0.35); color: #fff; }
.hp-ob-label { color: #d1d5db; }

@keyframes hp-float {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-8px); }
}

.hp-os-wrap {
    position: absolute;
    z-index: 4;
    transform: translate(var(--plx, 0px), var(--ply, 0px));
}
.hp-os-1 { top: 145px; right: 2px; }
.hp-os-2 { top: 145px; left: 2px; }

.hp-orbit-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.55rem 0.9rem;
    background: rgba(18, 20, 32, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: hp-float 4.5s ease-in-out infinite;
    transition: transform 0.18s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s;
}
.hp-os-wrap:hover .hp-orbit-stat {
    transform: scale(1.08) translateY(-3px) !important;
    box-shadow: 0 14px 35px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,92,0,0.25) !important;
    animation-play-state: paused;
}
.hp-os-val { font-size: 1.05rem; font-weight: 800; color: #ff7a3d; line-height: 1; }
.hp-os-key { font-size: 0.6rem; color: #6b7280; font-weight: 500; margin-top: 2px; }

.hp-orbit-dot {
    position: absolute;
    border-radius: 50%;
    background: #ff5c00;
    pointer-events: none;
    animation: hp-dot-blink var(--dot-dur, 3s) ease-in-out infinite var(--dot-del, 0s);
    transform: translate(var(--plx, 0px), var(--ply, 0px));
}
@keyframes hp-dot-blink {
    0%, 100% { opacity: 0.2; }
    50%       { opacity: 0.65; }
}
.hp-od-1 { width: 6px;  height: 6px;  top: 60px;    left: 60px;   --dot-dur: 2.8s; --dot-del: 0.0s; }
.hp-od-2 { width: 4px;  height: 4px;  top: 55px;    right: 75px;  --dot-dur: 3.2s; --dot-del: 0.6s; }
.hp-od-3 { width: 8px;  height: 8px;  bottom: 65px; left: 55px;   --dot-dur: 2.5s; --dot-del: 1.0s; }
.hp-od-4 { width: 5px;  height: 5px;  bottom: 70px; right: 65px;  --dot-dur: 3.6s; --dot-del: 0.3s; }
.hp-od-5 { width: 4px;  height: 4px;  top: 175px;   right: 25px;  --dot-dur: 4.0s; --dot-del: 1.4s; background: #a78bfa; }

.hp-mobile-orbit { display: none; }

@media (max-width: 900px) {
    .hp-orbit-art { display: none; }
    .hp-mobile-orbit {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        padding: 1.25rem 0.75rem;
        background: rgba(15, 17, 26, 0.6);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 18px;
        backdrop-filter: blur(10px);
        box-sizing: border-box;
        overflow: hidden;
    }
    .hp-mo-core {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: radial-gradient(circle at 40% 35%, #ff7a2a, #ff3d00 70%);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        color: #fff;
        box-shadow: 0 0 0 5px rgba(255,92,0,0.12), 0 0 22px rgba(255,92,0,0.3);
        animation: hp-core-pulse 3s ease-in-out infinite;
        flex-shrink: 0;
    }
    .hp-mo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.4rem;
        width: 100%;
    }
    .hp-mo-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
        padding: 0.5rem 0.25rem;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.07);
        border-radius: 10px;
        font-size: clamp(0.55rem, 2vw, 0.65rem);
        font-weight: 600;
        color: #9ca3af;
        text-align: center;
        min-width: 0;
        overflow: hidden;
    }
    .hp-mo-item span:last-child {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .hp-mo-icon {
        width: 28px;
        height: 28px;
        border-radius: 8px;
        background: rgba(255,92,0,0.15);
        color: #ff7a3d;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.7rem;
        flex-shrink: 0;
    }
}

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

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1),
                transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.scroll-reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-child {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1) var(--sr-delay, 0s),
                transform 0.6s cubic-bezier(0.22,1,0.36,1) var(--sr-delay, 0s);
}
.in-view .scroll-reveal-child {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal-stagger .hp-feature-card {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
                transform 0.55s cubic-bezier(0.22,1,0.36,1);
}
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(1)  { opacity:1; transform:none; transition-delay: 0.05s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(2)  { opacity:1; transform:none; transition-delay: 0.10s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(3)  { opacity:1; transform:none; transition-delay: 0.15s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(4)  { opacity:1; transform:none; transition-delay: 0.20s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(5)  { opacity:1; transform:none; transition-delay: 0.25s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(6)  { opacity:1; transform:none; transition-delay: 0.30s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(7)  { opacity:1; transform:none; transition-delay: 0.35s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(8)  { opacity:1; transform:none; transition-delay: 0.40s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(9)  { opacity:1; transform:none; transition-delay: 0.45s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(10) { opacity:1; transform:none; transition-delay: 0.50s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(11) { opacity:1; transform:none; transition-delay: 0.55s; }
.scroll-reveal-stagger.in-view .hp-feature-card:nth-child(12) { opacity:1; transform:none; transition-delay: 0.60s; }

.hp-feature-actions {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.65s, transform 0.5s ease 0.65s;
}
.in-view ~ * .hp-feature-actions,
.scroll-reveal-stagger.in-view + * .hp-feature-actions,
.in-view .hp-feature-actions {
    opacity: 1;
    transform: none;
}

.hp-how {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hp-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin: 0 0 0.5rem;
}

.hp-section-subtitle {
    font-size: 1rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 3rem;
}

.hp-steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 920px;
    margin: 0 auto;
}

.hp-step {
    flex: 1;
    max-width: 260px;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hp-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 92, 0, 0.15);
    color: #ff7a3d;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 92, 0, 0.25);
}

.hp-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #ff7a3d;
    margin: 0 auto 1rem;
}

.hp-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e4e9f7;
    margin: 0 0 0.5rem;
}

.hp-step p {
    font-size: 0.88rem;
    color: #7c839a;
    line-height: 1.5;
    margin: 0;
}

.hp-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 4.5rem;
    color: rgba(255, 255, 255, 0.12);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.scroll-reveal-stagger .hp-step,
.scroll-reveal-stagger .hp-step-arrow {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.45s cubic-bezier(0.22,1,0.36,1),
        transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.scroll-reveal-stagger.in-view .hp-step:nth-of-type(1)       { opacity:1; transform:none; transition-delay: 0.05s; }
.scroll-reveal-stagger.in-view .hp-step-arrow:nth-of-type(2) { opacity:1; transform:none; transition-delay: 0.15s; }
.scroll-reveal-stagger.in-view .hp-step:nth-of-type(3)       { opacity:1; transform:none; transition-delay: 0.20s; }
.scroll-reveal-stagger.in-view .hp-step-arrow:nth-of-type(4) { opacity:1; transform:none; transition-delay: 0.30s; }
.scroll-reveal-stagger.in-view .hp-step:nth-of-type(5)       { opacity:1; transform:none; transition-delay: 0.35s; }

@media (max-width: 768px) {
    .hp-steps-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .hp-step { max-width: 340px; }
    .hp-step-arrow {
        padding-top: 0;
        transform: rotate(90deg);
    }
    .hp-section-title { font-size: 1.5rem; }
}

.hp-usecases {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hp-uc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 820px;
    margin: 0 auto;
}

.hp-uc-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 1.75rem;
    transition: border-color 0.2s, background 0.2s;
}

.hp-uc-card:hover {
    border-color: rgba(255, 92, 0, 0.2);
    background: rgba(255, 92, 0, 0.04);
}

.hp-uc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 92, 0, 0.12);
    color: #ff7a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.hp-uc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #e4e9f7;
    margin: 0 0 0.5rem;
}

.hp-uc-card p {
    font-size: 0.88rem;
    color: #7c839a;
    line-height: 1.55;
    margin: 0;
}

.hp-whyus {
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hp-whyus-content {
    max-width: 680px;
    margin: 0 auto 3rem;
    text-align: center;
}

.hp-whyus-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 92, 0, 0.12);
    color: #ff7a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.hp-whyus-text {
    font-size: 1.1rem;
    color: #b0b8cc;
    line-height: 1.8;
    margin: 0;
}

.hp-whyus-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
}

.hp-whyus-stat {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: border-color 0.2s;
}

.hp-whyus-stat:hover {
    border-color: rgba(255, 92, 0, 0.2);
}

.hp-whyus-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #ff7a3d;
    margin-bottom: 0.5rem;
}

.hp-whyus-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #7c839a;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .hp-whyus-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    .hp-whyus-text {
        font-size: 0.95rem;
    }
}

.scroll-reveal-stagger .hp-uc-card {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.45s cubic-bezier(0.22,1,0.36,1),
        transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.scroll-reveal-stagger.in-view .hp-uc-card:nth-child(1) { opacity:1; transform:none; transition-delay: 0.05s; }
.scroll-reveal-stagger.in-view .hp-uc-card:nth-child(2) { opacity:1; transform:none; transition-delay: 0.12s; }
.scroll-reveal-stagger.in-view .hp-uc-card:nth-child(3) { opacity:1; transform:none; transition-delay: 0.19s; }
.scroll-reveal-stagger.in-view .hp-uc-card:nth-child(4) { opacity:1; transform:none; transition-delay: 0.26s; }

@media (max-width: 640px) {
    .hp-uc-grid {
        grid-template-columns: 1fr;
    }
    .hp-uc-card { padding: 1.25rem; }
}

.hp-cta .hp-cta-title,
.hp-cta .hp-cta-subtitle,
.hp-cta .hp-cta-buttons {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s cubic-bezier(0.22,1,0.36,1),
                transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.hp-cta.in-view .hp-cta-title    { opacity:1; transform:none; transition-delay: 0.05s; }
.hp-cta.in-view .hp-cta-subtitle { opacity:1; transform:none; transition-delay: 0.12s; }
.hp-cta.in-view .hp-cta-buttons  { opacity:1; transform:none; transition-delay: 0.19s; }

@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-child,
    .scroll-reveal-stagger .hp-feature-card,
    .scroll-reveal-stagger .hp-step,
    .scroll-reveal-stagger .hp-step-arrow,
    .scroll-reveal-stagger .hp-uc-card,
    .hp-cta .hp-cta-title,
    .hp-cta .hp-cta-subtitle,
    .hp-cta .hp-cta-buttons,
    .hp-cascade,
    .hp-feed-anim {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

/* ============ Homepage: Everything You Need + Latest from the Team ============ */
.hp-features-container { max-width: 1280px; }
.hp-features-row {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}
.hp-features-row::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 6%;
    bottom: 6%;
    width: 1px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 122, 0, 0.35) 50%, rgba(255, 255, 255, 0) 100%);
    transform: translateX(-50%);
    pointer-events: none;
}
.hp-features-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
}
.hp-features-main .hp-features-actions-compact {
    margin-top: auto;
    padding-top: 0.5rem;
}
.hp-features-row .hp-features-title {
    text-align: left;
    margin: 0 0 0.5rem;
    font-size: 1.85rem;
}
.hp-features-row .hp-features-subtitle {
    text-align: left;
    margin: 0 0 1.5rem;
    max-width: 540px;
    font-size: 0.98rem;
}

/* Compact chip grid (replaces the large card grid in this row) */
.hp-features-chips {
    list-style: none;
    margin: 0 0 1.5rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.55rem;
}
.hp-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    background: rgba(20, 24, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    color: #c9d1d9;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: default;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.hp-chip i {
    color: #ff7a00;
    font-size: 0.9rem;
    flex: 0 0 auto;
}
.hp-chip span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-chip:hover {
    background: rgba(255, 122, 0, 0.08);
    border-color: rgba(255, 122, 0, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

.hp-features-actions-compact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}
.hp-btn-compare {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hp-btn-compare:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(255, 92, 0, 0.32);
}
.hp-btn-features-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #ff8c42;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.18s ease, transform 0.18s ease;
}
.hp-btn-features-link i { transition: transform 0.18s ease; }
.hp-btn-features-link:hover { color: #ffb070; }
.hp-btn-features-link:hover i { transform: translateX(3px); }

.hp-features-news {
    align-self: stretch;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(160deg, rgba(255, 92, 0, 0.06) 0%, rgba(20, 24, 35, 0.85) 55%);
    border: 1px solid rgba(255, 122, 0, 0.22);
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.hp-features-news .hp-fnews-card,
.hp-features-news .hp-fnews-empty {
    flex: 1 1 auto;
}
.hp-fnews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.hp-fnews-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 800;
    color: #ff8c42;
}
.hp-fnews-eyebrow i { color: #ff7a00; }
.hp-fnews-all {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ff8c42;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.18s ease;
}
.hp-fnews-all:hover { color: #ffb070; }
.hp-fnews-all i { margin-left: 0.25rem; }

.hp-fnews-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(28, 33, 40, 0.95) 0%, rgba(15, 20, 25, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: #e6edf3;
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.hp-fnews-summary { flex: 1 1 auto; }
.hp-fnews-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 122, 0, 0.55);
    box-shadow: 0 14px 32px rgba(255, 92, 0, 0.18);
}
.hp-fnews-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    gap: 0.75rem;
}
.hp-fnews-cat {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.18) 0%, rgba(255, 140, 66, 0.18) 100%);
    border: 1px solid rgba(255, 122, 0, 0.4);
    color: #ff8c42;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    font-size: 0.7rem;
}
.hp-fnews-when {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #9ca3af;
    font-weight: 500;
}
.hp-fnews-when i { color: #ff8c42; font-size: 0.85em; }
.hp-fnews-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
}
.hp-fnews-summary {
    margin: 0;
    color: #b0b3b8;
    font-size: 0.92rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hp-fnews-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.hp-fnews-avatar {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 92, 0, 0.35);
}
.hp-fnews-author-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}
.hp-fnews-author-name {
    color: #e6edf3;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
}
.hp-fnews-author-role {
    color: #8b949e;
    font-size: 0.75rem;
    line-height: 1.2;
}
.hp-fnews-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #ff8c42;
    font-weight: 700;
    font-size: 0.88rem;
}
.hp-fnews-cta i { transition: transform 0.18s ease; }
.hp-fnews-card:hover .hp-fnews-cta i { transform: translateX(3px); }

.hp-fnews-more {
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    padding-top: 0.85rem;
}
.hp-fnews-more-label {
    display: block;
    color: #8b949e;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hp-fnews-more-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.hp-fnews-more-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
    text-decoration: none;
    color: #c9d1d9;
    font-size: 0.85rem;
    transition: background 0.18s ease, color 0.18s ease;
}
.hp-fnews-more-list a:hover {
    background: rgba(255, 122, 0, 0.08);
    color: #ffffff;
}
.hp-fnews-more-title {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.hp-fnews-more-when {
    flex: 0 0 auto;
    color: #8b949e;
    font-size: 0.72rem;
}

/* Empty state for news aside */
.hp-fnews-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.5rem;
    padding: 1.75rem 1.25rem;
    background: linear-gradient(145deg, rgba(28, 33, 40, 0.85) 0%, rgba(15, 20, 25, 0.95) 100%);
    border: 1px dashed rgba(255, 122, 0, 0.3);
    border-radius: 14px;
}
.hp-fnews-empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.18) 0%, rgba(255, 140, 66, 0.12) 100%);
    color: #ff8c42;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}
.hp-fnews-empty-title {
    margin: 0;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}
.hp-fnews-empty-text {
    margin: 0;
    color: #9ca3af;
    font-size: 0.88rem;
    line-height: 1.5;
    max-width: 260px;
}
.hp-fnews-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.5rem;
    color: #ff8c42;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.18s ease;
}
.hp-fnews-empty-cta:hover { color: #ffb070; }

@media (max-width: 1024px) {
    .hp-features-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hp-features-news {
        position: static;
        max-width: 640px;
        margin: 0 auto;
        width: 100%;
    }
    .hp-features-row .hp-features-title,
    .hp-features-row .hp-features-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hp-features-actions-compact {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .hp-features-row .hp-features-title { font-size: 1.55rem; }
    .hp-features-chips {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.45rem;
    }
    .hp-chip {
        padding: 0.5rem 0.7rem;
        font-size: 0.82rem;
    }
    .hp-features-news { padding: 1.15rem; border-radius: 14px; }
    .hp-fnews-card { padding: 1rem; }
    .hp-fnews-title { font-size: 1.05rem; }
}
