/* ====================================
   KizuneAI - Cinematic Homepage Styles
   ==================================== */

:root {
    /* Softer, more emotional color palette */
    --soft-pink: #ffb3c6;
    --deep-pink: #ff6b9d;
    --warm-purple: #c589e8;
    --deep-purple: #8b5cf6;
    --soft-blue: #a5b4fc;
    --midnight: #0f0818;
    --dark-violet: #1a0f2e;
    --soft-white: #fdf4ff;
    --muted-white: #e0d5e7;

    /* Typography */
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', -apple-system, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--midnight);
    color: var(--soft-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Video Background */
.hero-video-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

#heroVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(15, 8, 24, 0.3), rgba(15, 8, 24, 0.8));
    pointer-events: none;
}

/* Background Music Player */
.music-player {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 9999;
}

.music-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.9), rgba(139, 92, 246, 0.9));
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    backdrop-filter: blur(10px);
}

.music-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.6);
}

.music-toggle:active {
    transform: scale(0.95);
}

.music-icon {
    color: white;
    transition: opacity 0.3s ease;
}

/* Phone Frame Wrapper */
.phone-frame-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

/* Arclight Credit Outside Phone */
.arclight-credit-external {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 1000;
    color: var(--muted-white);
    font-size: 0.85rem;
    max-width: 90%;
}

.arclight-credit-external p {
    margin: 0.25rem 0;
}

.arclight-credit-external a {
    color: var(--soft-pink);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.arclight-credit-external a:hover {
    color: var(--warm-purple);
    text-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.arclight-credit-external .tagline {
    opacity: 0.7;
    font-size: 0.85rem;
}

.phone-device {
    position: relative;
    width: 100%;
    max-width: 430px;
    height: 90vh;
    max-height: 932px;
    background: #1a1a1a;
    border-radius: 55px;
    box-shadow:
        0 0 0 12px #2a2a2a,
        0 0 0 14px #1a1a1a,
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 6px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.phone-device::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-device::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #0a0a0a;
    border-radius: 3px;
    z-index: 11;
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--midnight);
    overflow: hidden;
}

.phone-content {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: transparent;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.phone-content::-webkit-scrollbar {
    display: none;
}

/* Navigation */
.nav-minimal {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--space-sm) 0;
    background: linear-gradient(180deg, rgba(15, 8, 24, 0.95) 0%, rgba(15, 8, 24, 0.8) 100%);
    backdrop-filter: blur(20px);
    z-index: 100;
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 1;
}

.nav-cta {
    padding: var(--space-xs) var(--space-md);
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 157, 0.5);
}

/* Testimonial Notifications (Like Text Messages) */
.testimonial-notifications {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 350px;
    z-index: 10;
}

.notification-message {
    background: rgba(26, 15, 46, 0.95);
    border: 1px solid rgba(255, 179, 198, 0.4);
    border-radius: 15px;
    padding: var(--space-sm) var(--space-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.5s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-message p {
    color: var(--soft-white);
    font-size: 0.85rem;
    font-style: italic;
    margin: 0;
    line-height: 1.3;
}

.notification-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 179, 198, 0.3);
    border-top-color: var(--soft-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInNotification {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Hero Section */
.hero-cinematic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg) var(--space-md);
    position: relative;
    background-image: url('../assets/internal-header-bg.png');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}

.hero-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(15, 8, 24, 1) 0%,
        rgba(15, 8, 24, 0.2) 30%,
        rgba(15, 8, 24, 0.2) 70%,
        rgba(15, 8, 24, 1) 100%
    );
    z-index: 0;
}

.hero-inner {
    text-align: center;
    max-width: 100%;
    padding: 0 var(--space-sm);
    animation: fadeInUp 1.5s ease;
    position: relative;
    z-index: 1;
}

.hero-logo-group {
    margin-bottom: var(--space-xl);
}

.hero-logo {
    height: 80px;
    width: auto;
    margin-bottom: var(--space-md);
    filter: drop-shadow(0 0 20px rgba(255, 107, 157, 0.4));
    animation: float 6s ease-in-out infinite;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 6vw, 2rem);
    font-weight: 400;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--soft-pink), var(--warm-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.hero-subtext {
    font-size: 1rem;
    color: var(--muted-white);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.private-beta-badge {
    margin-bottom: var(--space-lg);
}

.beta-pill {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.3), rgba(139, 92, 246, 0.3));
    border: 1px solid var(--soft-pink);
    border-radius: 20px;
    color: var(--soft-pink);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--soft-pink);
    border: 2px solid var(--soft-pink);
}

.btn-secondary:hover {
    background: rgba(255, 179, 198, 0.1);
    border-color: var(--warm-purple);
    color: var(--warm-purple);
}

.hero-hint {
    font-size: 0.9rem;
    color: var(--muted-white);
    opacity: 0.7;
    font-style: italic;
}

/* Video Lightbox */
.video-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.video-lightbox.active {
    display: block;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1000px;
    z-index: 10001;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-close:hover {
    color: var(--soft-pink);
    transform: rotate(90deg);
}

.lightbox-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 157, 0.5);
}

#lightboxVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Section Base */
section {
    padding: var(--space-xl) var(--space-md);
    position: relative;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2rem);
    text-align: center;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--soft-pink), var(--warm-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Not a Chatbot Section */
.not-chatbot {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.3), transparent);
}

.feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.08), rgba(197, 137, 232, 0.08));
    border: 1px solid rgba(255, 179, 198, 0.25);
    border-radius: 15px;
    padding: var(--space-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--soft-pink);
    box-shadow: 0 10px 30px rgba(255, 179, 198, 0.2);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-xs);
}

.feature-card p {
    color: var(--muted-white);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Companions Section */
.companions {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.2), transparent);
}

.gender-toggle {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.toggle-btn {
    padding: var(--space-xs) var(--space-lg);
    background: transparent;
    border: 2px solid rgba(255, 179, 198, 0.3);
    color: var(--muted-white);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    border-color: transparent;
    color: white;
}

.companions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.companion-card {
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.08), rgba(197, 137, 232, 0.08));
    border: 1px solid rgba(255, 179, 198, 0.2);
    border-radius: 15px;
    padding: var(--space-md);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.companion-card:hover {
    transform: translateY(-10px);
    border-color: var(--soft-pink);
    box-shadow: 0 15px 40px rgba(255, 179, 198, 0.3);
}

.companion-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-sm);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-family: var(--font-display);
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 179, 198, 0.4), transparent);
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

.companion-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-xs);
}

.companion-trait {
    color: var(--warm-purple);
    font-style: italic;
    margin-bottom: var(--space-sm);
    font-size: 0.85rem;
}

.companion-sample {
    color: var(--muted-white);
    font-style: italic;
    margin-bottom: 0;
    font-size: 0.85rem;
    min-height: 40px;
}

/* Video Showcase Section */
.video-showcase {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.3), transparent);
    padding: var(--space-xl) var(--space-md);
}

.video-intro {
    text-align: center;
    font-size: 1rem;
    color: var(--muted-white);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.video-frame {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(255, 107, 157, 0.25),
        0 0 40px rgba(139, 92, 246, 0.15);
    border: 2px solid rgba(255, 179, 198, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 16 / 9;
}

.video-frame:hover {
    box-shadow:
        0 15px 40px rgba(255, 107, 157, 0.35),
        0 0 60px rgba(139, 92, 246, 0.25);
    border-color: var(--soft-pink);
}

#promoVideo {
    width: 100%;
    height: 100%;
    display: block;
    background: var(--midnight);
    border: 0;
}

/* Quiz Section */
.quiz-signup {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.4), transparent);
}

.quiz-container {
    max-width: 700px;
    margin: 0 auto;
}

.quiz-intro {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.quiz-intro p {
    font-size: 1.25rem;
    color: var(--muted-white);
    font-style: italic;
}

.quiz-question {
    display: none;
    animation: fadeIn 0.5s ease;
}

.quiz-question.active {
    display: block;
}

.quiz-question h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-md);
    text-align: center;
    line-height: 1.3;
}

.quiz-options {
    display: grid;
    gap: var(--space-sm);
}

.quiz-option {
    padding: var(--space-sm);
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.05), rgba(197, 137, 232, 0.05));
    border: 2px solid rgba(255, 179, 198, 0.3);
    color: var(--soft-white);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    text-align: center;
}

.quiz-option:hover {
    background: rgba(255, 179, 198, 0.2);
    border-color: var(--soft-pink);
    transform: translateX(5px);
}

.quiz-option.selected {
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    border-color: transparent;
    color: white;
}

/* Quiz Result & Signup */
.quiz-result {
    animation: fadeIn 1s ease;
}

.result-reveal {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.result-text {
    font-size: 1.25rem;
    color: var(--muted-white);
    font-style: italic;
    margin-bottom: var(--space-lg);
}

.matched-companion {
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.1), rgba(197, 137, 232, 0.1));
    border: 2px solid var(--soft-pink);
    border-radius: 20px;
    padding: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.matched-companion h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-sm);
}

/* Beta Form */
.beta-form {
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.08), rgba(197, 137, 232, 0.08));
    border: 2px solid rgba(255, 179, 198, 0.3);
    border-radius: 20px;
    padding: var(--space-xl);
}

.beta-form h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.form-field {
    margin-bottom: var(--space-md);
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: var(--space-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 179, 198, 0.3);
    color: var(--soft-white);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--soft-pink);
    background: rgba(255, 255, 255, 0.08);
}

.form-field label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--midnight);
    padding: 0 var(--space-xs);
    color: var(--soft-pink);
    font-size: 0.9rem;
}

.btn-submit {
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 157, 0.6);
}

.form-note {
    text-align: center;
    margin-top: var(--space-md);
    color: var(--muted-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.3), transparent);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    max-width: 100%;
}

.timeline-step {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.05), rgba(197, 137, 232, 0.05));
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--deep-pink), var(--deep-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin: 0 auto var(--space-sm);
}

.timeline-step h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-xs);
}

.timeline-step p {
    color: var(--muted-white);
    line-height: 1.5;
    font-size: 0.9rem;
}

.timeline-connector {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--deep-pink), var(--deep-purple));
    display: none;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, transparent, rgba(26, 15, 46, 0.2), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
}

.testimonial {
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.05), rgba(197, 137, 232, 0.05));
    border-left: 3px solid var(--soft-pink);
    padding: var(--space-md);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 179, 198, 0.2);
}

.testimonial p {
    font-size: 1rem;
    color: var(--soft-white);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: var(--space-sm);
}

.testimonial cite {
    color: var(--soft-pink);
    font-style: normal;
    font-weight: 500;
}

/* Footer */
.footer-cinematic {
    background: linear-gradient(180deg, transparent, var(--dark-violet));
    padding: var(--space-xl) var(--space-md);
    margin-top: var(--space-lg);
}

.footer-cta {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.footer-cta h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--soft-pink);
    margin-bottom: var(--space-md);
}

.footer-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-ghost {
    padding: var(--space-sm) var(--space-lg);
    background: transparent;
    color: var(--muted-white);
    text-decoration: none;
    border: 1px solid rgba(255, 179, 198, 0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    border-color: var(--soft-pink);
    color: var(--soft-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 179, 198, 0.1);
}

.footer-note {
    color: var(--muted-white);
    margin-bottom: var(--space-sm);
}

.footer-note a {
    color: var(--soft-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-note a:hover {
    text-decoration: underline;
}

.copyright {
    color: var(--muted-white);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 768px) {
    /* Music player positioning on mobile */
    .music-player {
        top: 1rem;
        right: 1rem;
    }

    .music-toggle {
        width: 45px;
        height: 45px;
    }

    /* Remove phone frame on mobile - show full width */
    .phone-frame-wrapper {
        padding: 0;
    }

    .phone-device {
        max-width: 100%;
        height: 100vh;
        max-height: none;
        border-radius: 0;
        box-shadow: none;
    }

    .phone-device::before,
    .phone-device::after {
        display: none;
    }

    .timeline {
        flex-direction: column;
    }

    .timeline-connector {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .companions-grid {
        grid-template-columns: 1fr;
    }

    .feature-cards {
        grid-template-columns: 1fr;
    }

    .hero-cinematic {
        min-height: 90vh;
    }

    .hero-logo {
        height: 80px;
    }

    .nav-content {
        padding: 0 var(--space-md);
    }
}