/* Hero Section - Enhanced Authority */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem 2rem; /* Reduced bottom padding by half */
    text-align: center;
}

.hero-content {
    max-width: 900px; /* Slightly wider for commanding presence */
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.65;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.accent-text {
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500; /* Slightly heavier for emphasis */
}

/* Demo Video - Enhanced Prominence */
.demo-video {
    background: var(--glass-primary);
    backdrop-filter: var(--blur-glass);
    -webkit-backdrop-filter: var(--blur-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 780px;
    box-shadow: var(--shadow-deep);
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.demo-video:hover {
    transform: translateY(-4px);
    box-shadow: 
        var(--shadow-deep),
        0 0 30px rgba(139, 92, 246, 0.15);
    border-color: var(--border-active);
}

.video-container {
    position: relative;
    margin-bottom: 2rem;
}

.demo-title {
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 500; /* Increased from 400 */
    margin-bottom: 2rem; /* Increased spacing */
    color: var(--text-primary);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.demo-input-container {
    position: relative;
    z-index: 1;
}

.demo-input {
    width: 100%;
    padding: 1.25rem 1.5rem; /* Increased padding */
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    background: var(--glass-secondary);
    backdrop-filter: var(--blur-subtle);
    -webkit-backdrop-filter: var(--blur-subtle);
    color: var(--text-primary);
    font-size: 1rem; /* Increased from 0.9rem */
    font-family: inherit;
    font-weight: 400; /* Increased from 300 */
    resize: none;
    min-height: 70px; /* Increased from 60px */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.demo-input:focus {
    outline: none;
    border-color: var(--accent-electric);
    box-shadow: 
        0 0 0 3px rgba(139, 92, 246, 0.2),
        0 8px 32px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
    background: var(--glass-primary);
}

.demo-input::placeholder {
    color: var(--text-muted);
}

.demo-btn {
    margin-top: 1rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-electric) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-glass);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-container {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* Enhanced CTA Button - Magnetic Confidence */
.cta-btn {
    display: inline-block;
    padding: 1.5rem 3rem; /* Increased from 1.25rem 2.5rem */
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    backdrop-filter: var(--blur-subtle);
    -webkit-backdrop-filter: var(--blur-subtle);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--accent-rose-gold);
    text-decoration: none;
    border-radius: 24px;
    font-size: 1.2rem; /* Increased from 1.1rem */
    font-weight: 500; /* Increased from 400 */
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(201, 169, 110, 0.1),
        inset 0 1px 0 rgba(201, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.15), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-4px) scale(1.02); /* Added magnetic scale */
    box-shadow: 
        var(--shadow-magnetic),
        0 0 40px rgba(201, 169, 110, 0.3),
        0 0 0 1px rgba(201, 169, 110, 0.5),
        inset 0 1px 0 rgba(201, 169, 110, 0.4);
    border-color: rgba(201, 169, 110, 0.6);
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    color: #e8d5a3; /* Brighter on hover */
}