:root {
    --primary-blue: #2A5A8E;
    --secondary-teal: #00A99D;
    --neutral-gray: #505050;
    --light-canvas: #FAFAFB;
    --pure-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-canvas);
    color: var(--neutral-gray);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* --- THE CREATIVE WORKSHOP OVERLAY --- */
.workshop-grid {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: 0; opacity: 0.04; 
    background-size: 50px 50px;
    background-image:
      linear-gradient(to right, var(--neutral-gray) 1px, transparent 1px),
      linear-gradient(to bottom, var(--neutral-gray) 1px, transparent 1px);
    pointer-events: none;
}

/* --- THE STORY PLAYHEAD --- */
.story-scrubber {
    position: fixed; top: 10vh; left: 40px; height: 80vh; width: 2px;
    background: rgba(80,80,80, 0.1); z-index: 10;
}

.playhead-head {
    position: absolute; top: 0%; left: -5px; width: 12px; height: 12px;
    background-color: var(--secondary-teal); border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 169, 157, 0.4);
    transition: top 0.1s ease-out;
}

/* --- TYPOGRAPHY & BRAND --- */
.rawi { color: var(--primary-blue); }
.shala { color: var(--secondary-teal); }
.phonetic { font-family: 'Space Mono', monospace; font-size: 0.9em; opacity: 0.6; color: var(--neutral-gray); font-weight: normal; }
.studio-highlight { background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.text-red { color: #EF4444; }
.text-teal { color: var(--secondary-teal); }
.section-title { font-size: 2.5rem; font-weight: 900; color: #111; text-align: center; margin-bottom: 3rem; letter-spacing: -0.02em; }

/* --- NAVIGATION --- */
.site-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 5%; max-width: 1400px; margin: 0 auto; position: relative; z-index: 20;
}

/* --- THE CREATIVE LOGO --- */
.logo-wrapper { 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    cursor: pointer;
}
.logo-mark { 
    width: 38px; 
    height: 38px; 
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); 
}
.logo-wrapper:hover .logo-mark { 
    transform: rotate(15deg) scale(1.08); 
}
.logo-text { 
    font-size: 2.2rem; 
    font-weight: 900;  
    letter-spacing: -0.05em; 
}

.join-waitlist, .btn-primary {
    background-color: var(--secondary-teal); color: #fff; text-decoration: none; border: none; cursor: pointer;
    padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 169, 157, 0.2); font-family: inherit; display: inline-block;
}
.join-waitlist:hover, .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(0, 169, 157, 0.3); background-color: var(--primary-blue); }

/* --- MAIN CONTAINER --- */
.workshop-main { max-width: 1200px; margin: 0 auto; padding: 2rem 5% 6rem 5%; position: relative; z-index: 10; }

/* --- UNIVERSAL FLOATING CARD (The Core Aesthetic) --- */
.clean-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(80,80,80,0.08);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.clean-card:hover { transform: translateY(-5px); box-shadow: 0 40px 80px rgba(0,0,0,0.08); }
.card-eyebrow { font-family: 'Space Mono', monospace; font-size: 0.75rem; text-transform: uppercase; font-weight: bold; margin-bottom: 1rem; display: block; }
.card-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* --- HERO SECTION --- */
.workshop-hero { display: flex; align-items: center; justify-content: space-between; gap: 4rem; margin-bottom: 10rem; min-height: 70vh;}
.hero-text { flex: 1; }
.headline { font-size: 4.5rem; font-weight: 900; line-height: 1.05; letter-spacing: -0.05em; color: #111; margin-bottom: 1.5rem; }
.subheadline { font-size: 1.2rem; color: var(--neutral-gray); max-width: 600px; margin-bottom: 2.5rem; }
.hero-visuals { flex: 1; position: relative; height: 400px; }
.floating-card {
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border: 1px solid rgba(80,80,80,0.08);
    border-radius: 16px; padding: 2rem; width: 280px; box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    position: absolute; transition: transform 0.4s ease;
}
.floating-card h4 { font-weight: 700; color: #111; font-size: 1.1rem; margin-bottom: 0.5rem; }
.floating-card p { font-size: 0.85rem; }
.floating-card:hover { transform: translateY(-10px) scale(1.02); z-index: 10; }
.card-draft { top: 0px; left: -20px; rotate: -3deg; }
.card-ui { top: 80px; left: 140px; rotate: 2deg; z-index: 5; }
.card-mp4 { top: 220px; left: 20px; rotate: -1deg; }

/* --- MEANING SECTION --- */
.workshop-meaning { padding: 4rem 0 8rem 0; }
.meaning-grid { display: flex; align-items: center; justify-content: center; gap: 4rem; max-width: 900px; margin: 0 auto; text-align: center; }
.word-card h2 { font-size: 3.5rem; font-weight: 900; line-height: 1; margin-bottom: 1rem;}
.def { font-size: 1.1rem; }
.card-divider { height: 80px; width: 1px; background: linear-gradient(to bottom, var(--primary-blue), var(--secondary-teal)); opacity: 0.3; }

/* --- COMPARISON (OLD VS NEW) --- */
.comparison-section { margin-bottom: 8rem; }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.comparison-grid h3 { font-size: 1.5rem; color: #111; margin-bottom: 1.5rem; line-height: 1.3; }
.cross-list li, .check-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; }
.cross-list li::before { content: "✕"; color: #EF4444; margin-right: 12px; font-weight: bold; }
.check-list li::before { content: "✓"; color: var(--secondary-teal); margin-right: 12px; font-weight: bold; }

/* --- TIMELINE WORKFLOW --- */
.steps-section { margin-bottom: 8rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-card { padding: 2.5rem; }
.step-num { font-size: 3rem; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(0, 169, 157, 0.4); margin-bottom: 1rem; font-family: 'Space Mono', monospace; }
.step-card h4 { font-size: 1.2rem; color: #111; margin-bottom: 0.8rem; }
.step-card p { font-size: 0.95rem; }

/* --- FEATURES GRID --- */
.features-section { margin-bottom: 8rem; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-card h4 { font-size: 1.2rem; color: #111; margin-bottom: 0.8rem; }
.feature-card p { font-size: 0.95rem; }

/* --- PRICING & WAITLIST --- */
.pricing-section { margin-bottom: 8rem; display: flex; justify-content: center; }
.pricing-card { max-width: 600px; width: 100%; text-align: center; border-top: 4px solid var(--secondary-teal); padding: 4rem; }
.price-amount { font-size: 4rem; font-weight: 900; color: #111; display: flex; justify-content: center; align-items: baseline; line-height: 1; margin-bottom: 0.5rem; }
.currency { font-size: 2rem; color: var(--neutral-gray); }
.period { font-size: 1rem; color: var(--neutral-gray); font-weight: 400; margin-left: 5px; }
.price-sub { margin-bottom: 3rem; font-size: 0.9rem; }
.waitlist-form { display: flex; gap: 1rem; }
.email-input { flex: 1; padding: 1rem 1.5rem; border: 1px solid rgba(80,80,80,0.2); border-radius: 50px; font-size: 1rem; font-family: inherit; outline: none; background: transparent; }
.email-input:focus { border-color: var(--secondary-teal); }
.waitlist-note { font-size: 0.8rem; margin-top: 1rem; opacity: 0.7; }

/* --- FAQ --- */
.faq-section { margin-bottom: 4rem; max-width: 900px; margin: 0 auto; }
.faq-grid { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-item { padding: 2rem; }
.faq-item h4 { font-size: 1.1rem; color: #111; margin-bottom: 0.8rem; }
.faq-item p { font-size: 0.95rem; }

/* --- FOOTER & AUDIO --- */
.site-footer { border-top: 1px solid rgba(80,80,80,0.1); padding: 3rem 5%; }
.footer-container { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.copyright { font-size: 0.9rem; }

.audio-widget {
    position: fixed; bottom: 30px; right: 30px;
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px);
    border: 1px solid rgba(80,80,80,0.1); padding: 0.8rem 1.2rem; border-radius: 50px;
    display: flex; align-items: center; gap: 10px; cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); z-index: 100; transition: all 0.3s ease;
}
.audio-widget:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.audio-text { font-size: 0.8rem; font-weight: 700; color: var(--neutral-gray); }
.audio-widget.playing .audio-text { color: var(--secondary-teal); }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 900px) {
    .story-scrubber { display: none; }
    .workshop-hero { flex-direction: column; text-align: center; gap: 2rem; min-height: auto; margin-bottom: 6rem;}
    .hero-visuals { height: auto; display: flex; flex-direction: column; gap: 1rem; align-items: center; width: 100%; }
    .floating-card { position: static; rotate: 0deg !important; width: 100%; max-width: 350px; margin: 0; }
    .comparison-grid, .steps-grid, .features-grid { grid-template-columns: 1fr; }
    .meaning-grid { flex-direction: column; gap: 2rem; }
    .card-divider { width: 80px; height: 1px; }
    .waitlist-form { flex-direction: column; }
    .footer-container { flex-direction: column; gap: 1rem; text-align: center; }
}