html {
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    font-family: 'Lato', Arial, sans-serif;
    color: #29343b;
    background: #ffffff;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

.product-nav {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: 18px 0;
    background: #101820;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.product-nav .row {
    display: flex;
    align-items: center;
}

.product-brand {
    color: #ffffff;
    font-size: 27px;
    font-weight: 400;
    line-height: 1;
}

.product-brand span {
    display: block;
    margin-top: 6px;
    color: #27ae60;
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0;
}

.product-nav-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
    padding-top: 0;
}

.product-nav-links a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    font-weight: 700;
}

.product-nav-links a:hover,
.product-nav-links a:focus,
.product-nav-links a.active {
    color: #6ee7a3;
}

.product-hero {
    padding: 100px 0 92px;
    background: radial-gradient(circle at top left, rgba(39, 174, 96, 0.22), transparent 36%), linear-gradient(135deg, #101820 0%, #1f2d35 58%, #26383f 100%);
    color: #ffffff;
}

.product-kicker {
    margin: 0 0 14px;
    color: #6ee7a3;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.product-hero h1 {
    max-width: 900px;
    margin: 0 0 24px;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.08;
}

.product-hero .lead {
    max-width: 780px;
    margin: 0 0 32px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 21px;
    font-weight: 300;
    line-height: 1.65;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 999px;
    background: #27ae60;
    color: #ffffff;
    font-weight: 900;
}

.product-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-button:hover,
.product-button:focus {
    color: #ffffff;
    transform: translateY(-2px);
}

.product-section {
    padding: 82px 0;
}

.product-section.muted {
    background: #f5f8f6;
}

.product-section.dark {
    background: #101820;
    color: #ffffff;
}

.product-section h2 {
    margin: 0 0 16px;
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.section-intro {
    max-width: 780px;
    margin: 0 0 38px;
    color: #68767d;
    font-size: 18px;
    line-height: 1.7;
}

.dark .section-intro {
    color: rgba(255, 255, 255, 0.68);
}

.feature-grid,
.app-directory,
.related-grid {
    display: grid;
    gap: 20px;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.related-card {
    padding: 26px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e4ebe7;
}

.feature-card i {
    margin-bottom: 16px;
    color: #27ae60;
    font-size: 28px;
}

.feature-card h3,
.related-card h3 {
    margin: 0 0 9px;
    font-size: 20px;
    font-weight: 900;
}

.feature-card p,
.related-card p {
    margin: 0;
    color: #68767d;
    line-height: 1.65;
}

.app-directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-directory a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 17px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.app-directory a:hover,
.app-directory a:focus {
    background: #27ae60;
    color: #ffffff;
}

.related-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.related-card {
    display: block;
    color: #29343b;
    transition: all 0.2s ease;
}

.related-card:hover,
.related-card:focus {
    color: #29343b;
    border-color: #27ae60;
    transform: translateY(-3px);
}

.related-card strong {
    display: block;
    margin-top: 16px;
    color: #1f9953;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.product-footer {
    padding: 34px 0;
    background: #0b1116;
    color: rgba(255, 255, 255, 0.62);
}

.product-footer a {
    color: #6ee7a3;
}

@media (max-width: 991px) {
    .product-nav-links {
        gap: 14px;
    }

    .product-nav-links a {
        font-size: 14px;
    }

    .app-directory {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .product-nav .row {
        display: block;
    }

    .product-nav-links {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px 18px;
        padding-top: 18px;
    }

    .product-hero {
        padding: 72px 0 68px;
    }

    .product-hero h1 {
        font-size: 38px;
    }

    .product-section {
        padding: 60px 0;
    }

    .product-section h2 {
        font-size: 31px;
    }

    .feature-grid,
    .app-directory,
    .related-grid {
        grid-template-columns: 1fr;
    }
}
