/* ===================================================================
   Arcksave multi-product styles: landing tiles, product hero bands,
   coming-soon states. Complements style.css (same palette/vars).
   =================================================================== */

/* ---------- Landing page: fill the viewport so the footer sits at the
   bottom instead of leaving a white void beneath it ---------- */
.landing-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.landing-body #footer-container {
    margin-top: auto;
}

/* ---------- Product hero band (landing / reserve / frame) ---------- */
.product-hero {
    background: #111827;
    padding: 160px 0 90px;
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 80% 10%, rgba(255, 255, 255, 0.06), transparent),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255, 255, 255, 0.04), transparent);
    pointer-events: none;
}

.product-hero .container {
    position: relative;
    z-index: 1;
}

.product-eyebrow {
    display: inline-block;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.product-hero h1 {
    color: #FFFFFF;
    font-weight: 800;
    max-width: 760px;
}

.product-hero .product-sub {
    color: #D1D5DB;
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
    margin-top: 16px;
}

.product-hero .btn-outline-light:hover {
    color: #111827;
}

/* Centered variant used on the landing page */
.product-hero.text-center h1,
.product-hero.text-center .product-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Landing: product showcase cards ---------- */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 40px 32px;
    text-decoration: none;
    color: #374151;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
    border-color: #111827;
    color: #374151;
}

.product-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-card-icon i {
    color: #FFFFFF;
    font-size: 22px;
}

.product-card h3 {
    color: #111827;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 12px;
}

.product-card p {
    margin-bottom: 24px;
    line-height: 1.7;
}

.product-card .product-card-cta {
    margin-top: auto;
    color: #111827;
    font-weight: 600;
    font-size: 15px;
}

.product-card .product-card-cta i {
    transition: transform 0.3s ease;
    margin-left: 6px;
}

.product-card:hover .product-card-cta i {
    transform: translateX(6px);
}

/* ---------- Coming soon pill ---------- */
.coming-soon-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

/* Dark-on-light pill variant + navbar product context live in style.css,
   since the shared navbar/footer render on every page. */

/* ---------- How-it-works steps (Reserve) ---------- */
.step-card {
    background: var(--light);
    border-radius: 12px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-card h4 {
    color: #111827;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    color: #374151;
    margin: 0;
}

/* ---------- CTA band ---------- */
.cta-band {
    background: #111827;
    border-radius: 12px;
    padding: 56px 40px;
    text-align: center;
}

.cta-band h2 {
    color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-band p {
    color: #D1D5DB;
    max-width: 560px;
    margin: 0 auto 28px;
}

/* ---------- Frame preview placeholder grid ---------- */
.mock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mock-tile {
    border-radius: 10px;
    background: linear-gradient(135deg, #F3F4F6, #E5E7EB);
    border: 1px solid #E5E7EB;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    font-size: 24px;
}

.mock-tile:nth-child(2),
.mock-tile:nth-child(6) {
    aspect-ratio: 4 / 5;
}

@media (max-width: 767.98px) {
    .product-hero {
        padding: 130px 0 70px;
    }

    .mock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
