:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --accent: #a855f7;
    --bg: #0a0e1a;
    --bg-light: #151b2e;
    --text: #f8fafc;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --success: #22c55e;
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Grain Texture */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
}

/* Hero Container */
.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

/* Left Column */
.hero-left {
    max-width: 600px;
}

.badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #818cf8;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subhead {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.subhead strong {
    color: var(--success);
    font-weight: 700;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.2s;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -10px rgba(99, 102, 241, 0.6);
}

.fine-print {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.7;
}

/* Right Column - Video */
.hero-right {
    position: relative;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    border: 1px solid var(--border);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
    aspect-ratio: 16 / 10;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(99, 102, 241, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.video-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Feedback Section */
.feedback-section {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 40px;
    /* Reduced vertical padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 100%;
    /* Full width */
    margin: 0 auto;
}

.feedback-content {
    flex-shrink: 0;
}

.feedback-section h2 {
    font-size: 20px;
    /* Smaller */
    margin-bottom: 4px;
    font-weight: 700;
}

.feedback-intro {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.feedback-form {
    display: flex;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

#feature-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    /* Slightly smaller */
    color: white;
    font-family: inherit;
    font-size: 14px;
    transition: all 0.2s;
}

#feature-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

#send-feedback-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-size: 15px;
}

#send-feedback-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.feedback-status {
    color: var(--success);
    font-weight: 600;
    font-size: 12px;
    min-height: 18px;
    opacity: 0;
    transition: opacity 0.3s;
    position: absolute;
    bottom: -24px;
    right: 0;
}

@media (max-width: 640px) {
    .feedback-form {
        flex-direction: column;
    }

    #send-feedback-btn {
        padding: 12px;
        justify-content: center;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 32px 20px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text-muted);
    position: relative;
    z-index: 2;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    h1 {
        font-size: 48px;
    }

    .vote-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 36px;
    }

    .subhead {
        font-size: 18px;
    }

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

    .voting-section {
        padding: 32px 20px;
    }
}

/* Features List */
.features-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: var(--success);
}

.feature-item span {
    flex: 1;
}
/* Responsive - Feedback Section */
@media (max-width: 1024px) {
    .feedback-section {
        flex-direction: column;
        text-align: center;
        padding: 28px 32px;
    }
    
    .feedback-content {
        width: 100%;
    }
    
    .feedback-form {
        width: 100%;
        max-width: 100%;
    }
}
