@charset "UTF-8";

/* ==========================================================================
   Project: World Blue AI Studio - AI Creator LP 2026
   Theme: Ethereal Tech (Soft UI / Glassmorphism)
   Target: Women, Beginners, Creative
   ========================================================================== */

/* --------------------------------------------------------------------------
   Variables
   -------------------------------------------------------------------------- */
:root {
    --wb-color-gold: #D4AF37;
    --wb-color-gold-light: #F3E5AB;
    --wb-color-lavender: #E6E6FA;
    --wb-color-lavender-dark: #B0A4D8;
    --wb-color-white: #ffffff;
    --wb-color-bg: #F9F9F9;
    /* Off-white base */
    --wb-color-text-main: #4A4A4A;
    /* Soft charcoal */
    --wb-color-text-accent: #333333;
    --wb-color-text-light: #888888;

    --wb-font-mincho: "Noto Serif JP", "Hina Mincho", serif;
    --wb-font-gothic: "Noto Sans JP", sans-serif;

    --wb-glass-bg: rgba(255, 255, 255, 0.65);
    --wb-glass-border: 1px solid rgba(255, 255, 255, 0.8);
    --wb-shadow-soft: 0 10px 40px 0 rgba(31, 38, 135, 0.05);
    --wb-shadow-hover: 0 15px 50px 0 rgba(212, 175, 55, 0.15);

    --wb-gradient-main: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    --wb-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 100%);
}

/* --------------------------------------------------------------------------
   Scoping Wrapper (Conflict Avoidance)
   -------------------------------------------------------------------------- */
.wb-lp-2026-wrapper {
    background-color: var(--wb-color-bg);
    color: var(--wb-color-text-main);
    font-family: var(--wb-font-gothic);
    line-height: 1.8;
    overflow-x: hidden;
}

.wb-lp-2026-wrapper * {
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.wb-lp-2026-wrapper h1,
.wb-lp-2026-wrapper h2,
.wb-lp-2026-wrapper h3 {
    font-family: var(--wb-font-mincho);
    color: var(--wb-color-text-accent);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.wb-lp-2026-wrapper h2.section-title {
    font-size: 2.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 4rem;
    background: linear-gradient(to right, #D4AF37, #B0A4D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   Components: Glass Card
   -------------------------------------------------------------------------- */
.wb-glass-card {
    background: var(--wb-glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: var(--wb-glass-border);
    box-shadow: var(--wb-shadow-soft);
    padding: 3rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wb-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--wb-shadow-hover);
}

/* --------------------------------------------------------------------------
   Components: Buttons
   -------------------------------------------------------------------------- */
.wb-btn-gold {
    display: inline-block;
    padding: 1rem 3rem;
    /* Visual Enhancement: Amazon-like Orange Action Color */
    background: linear-gradient(to bottom, #ffc44e, #ff9900);
    color: #111;
    text-decoration: none;
    border-radius: 5px;
    /* SLightly more square like Amazon? or keep round? User said "color". improved visual. */
    border-radius: 50px;
    /* Keep round for "Ethereal" theme consistency, just color change */
    font-weight: bold;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 0 #cc7a00, 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 1px solid #cc7a00;
}

.wb-btn-gold:hover {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #cc7a00, 0 3px 5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(to bottom, #ffbe3d, #e68a00);
    color: #111;
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.wb-hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fdfbfb;
    background-image:
        linear-gradient(rgba(20, 20, 40, 0.6), rgba(20, 20, 40, 0.8)),
        url('../images/hero-bg-ai-city.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.wb-hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 3rem;
    /* Visual Enhancement: Glassmorphism Card for guaranteed legibility */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.wb-hero-section .wb-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
}

.wb-hero-section .wb-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #f0f0f0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Floating Elements Animation */
.wb-floating-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: float 10s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.2);
    top: -50px;
    left: -50px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: rgba(176, 164, 216, 0.2);
    bottom: -100px;
    right: -100px;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 30px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* --------------------------------------------------------------------------
   Campaign Section (Start Dash 2026)
   -------------------------------------------------------------------------- */
.wb-campaign-section {
    padding: 6rem 1rem;
    background: linear-gradient(180deg, #fff 0%, #f9f9f9 100%);
    text-align: center;
}

.wb-campaign-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 3px solid var(--wb-color-gold);
    border-radius: 15px;
    padding: 3rem;
    position: relative;
}

.wb-campaign-badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wb-color-gold);
    color: #fff;
    padding: 0.5rem 3rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.wb-price-box {
    margin: 2rem 0;
}

.wb-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
}

.wb-price-new {
    font-size: 3rem;
    color: var(--wb-color-gold);
    font-family: var(--wb-font-mincho);
    font-weight: bold;
}

.wb-price-off {
    color: #d00;
    font-weight: bold;
    margin-left: 1rem;
}

/* --------------------------------------------------------------------------
   Added Sections: Recommended / Curriculum / FAQ
   -------------------------------------------------------------------------- */

/* Recommended Grid */
.wb-recommend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.wb-recommend-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--wb-color-gold);
}

.wb-recommend-item h4 {
    margin-top: 0;
    color: var(--wb-color-text-accent);
}

/* Curriculum Timeline */
.wb-curriculum-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.wb-curriculum-item {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    padding: 1.5rem;
    border-radius: 10px;
    border-bottom: 2px solid var(--wb-color-lavender);
}

.wb-curriculum-num {
    display: inline-block;
    background: var(--wb-color-lavender-dark);
    color: #fff;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.wb-faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.wb-faq-q {
    background: var(--wb-color-bg);
    padding: 1.5rem;
    font-weight: bold;
    cursor: auto;
    color: var(--wb-color-text-accent);
}

.wb-faq-q::before {
    content: "Q.";
    color: var(--wb-color-gold);
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.wb-faq-a {
    padding: 1.5rem;
    border-top: 1px solid #eee;
    color: var(--wb-color-text-main);
}

.wb-faq-a::before {
    content: "A.";
    color: var(--wb-color-lavender-dark);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Footer / Policy */
.wb-policy-box {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #666;
    margin-top: 2rem;
}

/* Pricing Table Details */
.wb-pricing-section {
    padding: 6rem 1rem;
    background: #fff;
    text-align: center;
}

.wb-pricing-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    /* Align heights */
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.wb-pricing-card {
    border: 3px solid var(--wb-color-gold);
    border-radius: 20px;
    padding: 3rem 2rem;
    flex: 1;
    /* Grow to fill space */
    width: 48%;
    /* Force essentially half width minus gap */
    max-width: none;
    /* Remove distinct max-width limitation */
    margin: 0 0 2rem;
    /* Remove auto margins */
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wb-pricing-wrapper {
        flex-direction: column;
    }

    .wb-pricing-card {
        width: 100%;
        max-width: 500px;
        /* Limit width on mobile only */
        margin: 0 auto 2rem;
    }
}

.wb-pricing-card:hover {
    transform: translateY(-10px);
}

.wb-pricing-card.pro {
    border-color: #6a11cb;
    background: linear-gradient(180deg, #ffffff 0%, #f4f0ff 100%);
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 2;
}

.wb-pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.wb-price-row {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed #ddd;
    border-bottom: 1px dashed #ddd;
}

.wb-price-label {
    font-size: 1rem;
    color: #d00;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    background: #ffeeee;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
}

.wb-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.4rem;
    margin-right: 15px;
    font-weight: normal;
}

.wb-campaign-price {
    color: #d00;
    font-size: 3.5rem;
    /* Much larger */
    font-weight: 800;
    font-family: var(--wb-font-mincho);
    line-height: 1;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}

.wb-tax-note {
    font-size: 0.9rem;
    color: #666;
    display: block;
    margin-top: 10px;
}

/* Video Section */
.wb-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--wb-color-gold);
}

.wb-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   Visual Enhancements (Hero Overlay & Decorative Images)
   ========================================================================== */
.wb-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    pointer-events: none;
}

.wb-hero-content {
    position: relative;
    z-index: 2;
}

.wb-hero-title {
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.8), 0 0 10px rgba(212, 175, 55, 0.3);
}

.wb-concept-image-wrapper {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.wb-concept-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.wb-concept-image:hover {
    transform: translateY(-5px) scale(1.02);
}