@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-dark: hsl(222, 47%, 6%);
    --bg-darker: hsl(222, 47%, 4%);
    --text-light: hsl(0, 0%, 100%);
    --text-muted: hsl(217, 19%, 60%);
    --text-dim: hsl(217, 19%, 40%);
    
    /* Elegant Accents */
    --emerald-primary: hsl(150, 84%, 37%);
    --emerald-light: hsl(150, 84%, 47%);
    --emerald-glow: hsla(150, 84%, 37%, 0.25);
    
    --gold-primary: hsl(43, 96%, 56%);
    --gold-light: hsl(43, 96%, 66%);
    --gold-glow: hsla(43, 96%, 56%, 0.25);
    
    --glass-bg: rgba(15, 23, 42, 0.45);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-focus: rgba(16, 185, 129, 0.4);
    
    /* Layout & Animation */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Ambient Glowing Background Orbs */
.ambient-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    mix-blend-mode: screen;
}

.orb-emerald {
    top: -10%;
    right: 10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--emerald-primary) 0%, transparent 70%);
    animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-gold {
    bottom: -15%;
    left: 5%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--gold-primary) 0%, transparent 70%);
    animation: floatOrb 30s infinite alternate ease-in-out 3s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.9); }
}

/* Main Container Layout */
.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem 1.5rem;
    position: relative;
    z-index: 10;
}

/* Header & Brand */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    padding: 0.5rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.brand-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 12px hsla(150, 84%, 47%, 0.4));
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--text-light);
    letter-spacing: -0.02em;
}

.brand-text span {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

/* Typography */
h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--text-light) 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.accent-gradient {
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 2.2rem;
    max-width: 580px;
    line-height: 1.5;
}

/* Premium Waitlist Glassmorphism Card */
.waitlist-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.waitlist-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-primary), var(--gold-primary));
}

.waitlist-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.waitlist-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.waitlist-form {
    display: flex;
    gap: 0.75rem;
    position: relative;
}

.form-group {
    flex-grow: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.form-input {
    width: 100%;
    padding: 1.1rem 1.2rem 1.1rem 3rem;
    background: rgba(8, 14, 28, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-spring);
    outline: none;
}

.form-input:focus {
    border-color: var(--emerald-primary);
    box-shadow: 0 0 15px var(--emerald-glow);
    background: rgba(8, 14, 28, 0.8);
}

.form-input:focus + .input-icon {
    color: var(--emerald-light);
}

.submit-btn {
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, var(--emerald-primary) 0%, var(--emerald-light) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-spring);
    box-shadow: 0 8px 20px var(--emerald-glow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, var(--emerald-light) 0%, var(--emerald-primary) 100%);
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Success/Error States */
.form-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    display: none;
    align-items: center;
    gap: 0.5rem;
    animation: fadeInUp 0.4s ease forwards;
}

.form-feedback.success {
    color: var(--emerald-light);
    display: flex;
}

.form-feedback.error {
    color: #ef4444;
    display: flex;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Visual - Overlapping Scout Characters */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 480px;
}

.characters-stage {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.character-wrapper {
    position: absolute;
    bottom: 0;
    width: 260px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: var(--transition-spring);
}

.girl-wrapper {
    left: -10%;
    z-index: 12;
    animation: hoverGirl 6s infinite alternate ease-in-out;
}

.boy-wrapper {
    right: -10%;
    z-index: 10;
    animation: hoverBoy 7s infinite alternate ease-in-out 1s;
}

.character-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.character-wrapper:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 15;
}

@keyframes hoverGirl {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-12px) rotate(-1.5deg); }
}

@keyframes hoverBoy {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-15px) rotate(1.5deg); }
}

/* Storm/Journey Narrative Card */
.storm-narrative-section {
    margin-bottom: 8rem;
}

.storm-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-right: 4px solid var(--gold-primary);
}

.storm-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.storm-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.storm-card:hover .storm-img {
    transform: scale(1.03);
}

.storm-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, rgba(8, 14, 28, 0.7) 0%, transparent 100%);
}

.storm-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.storm-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--gold-primary);
    padding-left: 1.25rem;
}

.storm-subtext {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Meet Your Learning Guides Section */
.guides-section {
    margin-bottom: 8rem;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guide-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-spring);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.guide-card:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 185, 129, 0.25);
    box-shadow: 0 20px 45px rgba(16, 185, 129, 0.1);
}

.guide-img-wrapper {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    position: relative;
    transition: var(--transition-spring);
    overflow: hidden;
}

.guide-character-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: var(--transition-spring);
}

.guide-card:hover .guide-character-img {
    transform: scale(1.08) translateY(-5px);
}

.guide-badge {
    background: rgba(229, 175, 47, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.guide-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.2rem;
}

.guide-role {
    font-size: 0.85rem;
    color: var(--emerald-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.guide-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Feature Item Cards (Scout Badges) */
.features-section {
    margin-bottom: 8rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.feature-item-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition-spring);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-item-card:hover {
    transform: translateY(-8px);
    border-color: rgba(229, 175, 47, 0.3);
    box-shadow: 0 20px 45px rgba(229, 175, 47, 0.1);
}

.badge-icon-wrapper {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid var(--gold-primary);
    padding: 3px;
    background: var(--bg-darker);
    box-shadow: 0 8px 24px rgba(229, 175, 47, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: var(--transition-spring);
}

.badge-icon-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.feature-item-card:hover .badge-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 10px 30px rgba(229, 175, 47, 0.4);
}

.feature-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
}

.feature-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Values Comparison Section */
.comparison-section {
    margin-bottom: 7rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.card-bad {
    border-left: 4px solid #ef4444;
}

.card-good {
    border-left: 4px solid var(--emerald-primary);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.05);
}

.card-good::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-header-tag {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-bad .card-header-tag { color: #f87171; }
.card-good .card-header-tag { color: var(--emerald-light); }

.card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.2rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.card-bad .value-icon { color: #f87171; }
.card-good .value-icon { color: var(--emerald-light); }

.value-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.value-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Footer Details & Contact Info */
footer {
    border-top: 1px solid var(--glass-border);
    padding-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info {
    max-width: 320px;
}

.footer-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    color: var(--emerald-light);
    transform: translateX(3px);
}

.contact-icon {
    font-size: 1rem;
}

.copyright {
    width: 100%;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* Custom Visual Badge (Scout theme overlay) */
.visual-badge {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    z-index: 20;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 6rem;
    }
    
    .hero-visual {
        order: -1;
        height: 380px;
    }
    
    .character-wrapper {
        width: 200px;
    }
    
    .storm-card {
        grid-template-columns: 1fr;
    }
    
    .storm-image-wrapper {
        min-height: 250px;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    header {
        margin-bottom: 3rem;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .character-wrapper {
        width: 160px;
    }
    
    .waitlist-container {
        padding: 1.5rem;
    }
    
    .waitlist-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
    
    .storm-content {
        padding: 2rem;
    }
    
    .guide-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-item-card {
        padding: 2rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-info {
        max-width: 100%;
    }
    
    .contact-link {
        justify-content: center;
    }
}
