:root {
    --bg: #050709;
    --accent: #E66827;
    --text: #E0E0E0;
    --font-head: 'Share Tech Mono', monospace;
    --font-body: 'Inter', sans-serif;
}

body { background: var(--bg); color: var(--text); font-family: var(--font-body); margin: 0; line-height: 1.5; }

.hero { min-height: 100vh; padding: 2rem; display: flex; align-items: center; padding-top: calc(2rem - 40px); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; max-width: 1200px; margin: 0 auto; align-items: center; }

h1 { font-family: var(--font-head); font-size: 48px; margin-bottom: 1rem; color: #fff; text-transform: uppercase; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.2rem; color: var(--accent); text-transform: uppercase; margin-bottom: 1rem; }
.tagline { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }

/* Фінальні стилі форми */
#ml-container input[type="email"] {
    width: 100%; padding: 1.1rem; background: transparent; 
    border: 1px solid #6c7a80; color: white; margin-bottom: 1rem;
    transition: 0.3s;
}
#ml-container input[type="email"]:focus { border-color: var(--accent); outline: none; }

#ml-container button.primary { 
    background: var(--accent); color: #000; border: none; padding: 1.1rem 2rem; 
    font-weight: bold; cursor: pointer; width: 100%; text-transform: uppercase;
    transition: 0.3s;
}
#ml-container button.primary:hover { background: #FF8C50; }

.micro-copy { font-size: 12px; opacity: 0.5; margin-top: 0.5rem; }

.cover-stage img { width: 100%; height: auto; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.6)); }
.panorama-footer { height: 300px; background: url('assets/panorama.jpg') center/cover; mask-image: linear-gradient(to top, black, transparent); }

@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    h1 { font-size: 32px; }
}