/* =============================================
   Build Your Own BOB — Intro / Landing Page
   ============================================= */

/* --- Hero Section --- */
.byo-hero {
    background: #0a0a0a;
    color: #fff;
    padding: 72px 0 56px;
    min-height: 560px;
    display: flex;
    align-items: center;
}

.byo-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.byo-hero-content {
    flex: 1;
    max-width: 560px;
}

/* Badge */
.byo-badge {
    display: inline-block;
    background: #fed531;
    color: #000;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Title */
.byo-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #fff;
}

.byo-title em {
    font-style: normal;
    color: #fed531;
}

/* Description */
.byo-desc {
    font-size: 1.05rem;
    color: #ccc;
    line-height: 1.7;
    margin: 0 0 36px;
    max-width: 480px;
}

/* --- Steps --- */
.byo-steps {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.byo-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.byo-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fed531;
    color: #000;
    font-weight: 800;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.byo-step-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #aaa;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 60px;
    line-height: 1.3;
}

.byo-step-arrow {
    font-size: 1.2rem;
    color: #555;
    padding-bottom: 22px; /* align with circles, not labels */
}

/* --- CTAs --- */
.byo-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.byo-create-btn {
    background: #fed531;
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 800;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(254, 213, 49, 0.35);
}

.byo-create-btn:hover {
    background: #ffc800;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(254, 213, 49, 0.45);
}

.byo-create-btn:active {
    transform: translateY(0);
}

.byo-back-link {
    color: #888;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s;
}

.byo-back-link:hover {
    color: #fff;
}

/* --- Decorative Figure (right side) --- */
.byo-hero-figure {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* --- Randomised carousel figure --- */
.byo-figure-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    transition: opacity 0.4s ease;
}

.byo-figure-carousel.byo-carousel-fade {
    opacity: 0;
}

.byo-carousel-part {
    display: block;
    width: 180px;
    object-fit: contain;
}

.byo-carousel-head {
    height: 143px;
    object-position: center 5%;
    margin-bottom: -75px;
    position: relative;
    z-index: 3;
}

.byo-carousel-body {
    height: 195px;
    object-position: center center;
    margin-bottom: -81px;
    position: relative;
    z-index: 2;
}

.byo-carousel-legs {
    height: 170px;
    object-position: center top;
    position: relative;
    z-index: 1;
}

.byo-figure-caption {
    font-size: 0.8rem;
    color: #555;
    text-align: center;
    margin: 0;
}

/* --- Features Strip --- */
.byo-features {
    background: #f7f7f7;
    padding: 36px 0;
    border-bottom: 1px solid #eee;
}

.byo-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.byo-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.byo-feature-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.byo-feature strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.byo-feature p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .byo-hero {
        padding: 48px 0 40px;
        min-height: auto;
    }

    .byo-hero-inner {
        flex-direction: column;
        gap: 32px;
    }

    .byo-hero-figure {
        display: none; /* hide placeholder on mobile */
    }

    .byo-title {
        font-size: 2.2rem;
    }

    .byo-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .byo-steps {
        gap: 6px;
    }

    .byo-step-arrow {
        font-size: 1rem;
        padding-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .byo-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .byo-step-arrow {
        display: none;
    }
}
