

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f5f5f7;
    color: #1d1d1f;
}

.reveal-on-load {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-load.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 124px 20px 88px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-badge,
.section-eyebrow,
.hero-stat-label,
.product-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-badge {
    margin-bottom: 18px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #0071e3;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.hero h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.hero p {
    margin: 22px 0 0;
    max-width: 760px;
    font-size: 20px;
    line-height: 1.8;
    color: #6e6e73;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: #0071e3;
    color: white;
    box-shadow: 0 10px 24px rgba(0, 113, 227, 0.18);
}

.btn-primary:hover {
    background: #0064c8;
}

.btn-secondary {
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-secondary:hover {
    background: #fafafa;
}

.hero-stats-grid {
    margin-top: 42px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-stat-card,
.feature-band-card,
.product-card,
.showcase-card,
.showcase-point-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.hero-stat-card {
    padding: 22px 20px;
}

.hero-stat-label {
    color: #6e6e73;
    margin-bottom: 10px;
}

.hero-stat-card strong {
    display: block;
    font-size: 34px;
    letter-spacing: -0.04em;
}

.section {
    padding: 70px 20px;
}

.section-feature-band {
    padding-top: 8px;
}

.feature-band-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.feature-band-card {
    padding: 28px 24px;
    text-align: left;
}

.feature-band-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.feature-band-card p {
    margin: 0;
    color: #6e6e73;
    line-height: 1.75;
}

.section-heading-row {
    max-width: 1180px;
    margin: 0 auto 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.section-eyebrow {
    color: #006edc;
    margin-bottom: 12px;
}

.section h2 {
    margin: 0;
    font-size: clamp(34px, 5vw, 48px);
    letter-spacing: -0.04em;
}

.view-all-link {
    color: #800000;
    text-decoration: none;
}

.view-all-link:hover {
    color: #800000;
    text-decoration: underline;
}

.products-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card {
    padding: 20px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    overflow: hidden;
    height: 100%;
}

.interactive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
    border-color: rgba(0, 113, 227, 0.08);
}

.product-card-image-wrap {
    min-height: 220px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.product-card-image {
    width: 100%;
    max-width: 200px;
    height: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.interactive-card:hover .product-card-image {
    transform: scale(1.05);
}

.product-card-content {
    text-align: left;
}

.product-chip {
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.04);
    color: #4b5563;
}

.product-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    letter-spacing: -0.03em;
}

.product-card-description {
    margin: 0 0 18px;
    color: #6e6e73;
    line-height: 1.75;
    min-height: 72px;
}

.product-card-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.product-card-price {
    margin: 0;
    color: #111111;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-card-cta {
    color: #0071e3;
    font-size: 14px;
    font-weight: 700;
}

.empty-product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 240px;
    color: #6e6e73;
    font-weight: 600;
    grid-column: 1 / -1;
}

.section-showcase {
    padding-top: 16px;
    padding-bottom: 90px;
}

.showcase-card {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
}

.showcase-copy {
    text-align: left;
}

.showcase-copy h2 {
    margin: 0;
    font-size: clamp(34px, 4.8vw, 50px);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.showcase-copy p {
    margin: 18px 0 0;
    color: #6e6e73;
    line-height: 1.8;
    font-size: 18px;
}

.showcase-actions {
    justify-content: flex-start;
}

.showcase-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.showcase-point-card {
    padding: 22px 20px;
    text-align: left;
}

.showcase-point-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.showcase-point-card p {
    margin: 0;
    color: #6e6e73;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .feature-band-grid,
    .showcase-card,
    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .showcase-card {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 108px 16px 72px;
    }

    .hero p {
        font-size: 18px;
    }

    .section {
        padding: 54px 16px;
    }

    .hero-stat-card,
    .feature-band-card,
    .product-card,
    .showcase-card,
    .showcase-point-card {
        border-radius: 24px;
    }

    .section-heading-row {
        align-items: flex-start;
    }

    .product-card-bottom-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-actions,
    .hero-buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}