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

:root {
    --primary-purple: #7c3aed;
    --secondary-purple: #8b5cf6;
    --light-purple: #a78bfa;
    --pale-purple: #ddd6fe;
    --yellow: #fbbf24;
    --orange: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-light: #f9fafb;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    min-height: 100vh;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-purple);
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Text Content */
.text-content {
    max-width: 560px;
}

.title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-purple);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Notify Section */
.notify-section {
    margin-bottom: 2.5rem;
}

.notify-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.email-form {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.email-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    background: var(--white);
}

.email-input:focus {
    outline: none;
    border-color: var(--secondary-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.notify-btn {
    padding: 0.875rem 2rem;
    background: var(--primary-purple);
    color: var(--white);
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.notify-btn:hover {
    background: var(--secondary-purple);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.notify-btn:active {
    transform: translateY(0);
}

.form-message {
    font-size: 0.875rem;
    margin-top: 0.5rem;
    min-height: 1.25rem;
}

.form-message.success {
    color: #10b981;
}

.form-message.error {
    color: #ef4444;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-purple);
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    background: var(--primary-purple);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* Image Content - Illustration */
.image-content {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gears */
.gear {
    position: absolute;
    animation: rotate 8s linear infinite;
}

.gear-1 {
    top: 5%;
    right: 25%;
    animation-duration: 6s;
}

.gear-2 {
    top: 10%;
    right: 10%;
    animation-duration: 8s;
    animation-direction: reverse;
}

.gear-3 {
    top: 35%;
    right: 5%;
    animation-duration: 10s;
}

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

/* Monitor */
.monitor {
    position: relative;
    z-index: 10;
}

.monitor-screen {
    width: 420px;
    height: 280px;
    background: #2d3748;
    border-radius: 0.75rem 0.75rem 0 0;
    border: 12px solid #1a202c;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.browser-bar {
    background: var(--secondary-purple);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.4rem;
}

.browser-dots span {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.search-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-light);
}

.screen-content {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.content-box {
    background: #4a5568;
    border-radius: 0.5rem;
}

.content-box.large {
    width: 180px;
    height: 120px;
}

.content-box.small {
    width: 100px;
    height: 120px;
}

.content-lines {
    position: absolute;
    bottom: 4rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content-lines span {
    display: block;
    height: 0.5rem;
    background: #4a5568;
    border-radius: 0.25rem;
}

.content-lines span:nth-child(1) { width: 200px; }
.content-lines span:nth-child(2) { width: 180px; }
.content-lines span:nth-child(3) { width: 150px; }

.monitor-stand {
    width: 80px;
    height: 40px;
    background: #4a5568;
    margin: 0 auto;
    border-radius: 0 0 0.5rem 0.5rem;
}

.monitor-base {
    width: 160px;
    height: 20px;
    background: #2d3748;
    margin: 0 auto;
    border-radius: 50%;
}

/* Barrier */
.barrier {
    position: absolute;
    bottom: 15%;
    left: 5%;
    width: 120px;
    height: 60px;
    z-index: 5;
}

.barrier-stripe {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        45deg,
        var(--orange),
        var(--orange) 15px,
        var(--yellow) 15px,
        var(--yellow) 30px
    );
    border-radius: 0.5rem;
    position: relative;
}

.barrier-stripe::before,
.barrier-stripe::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 50px;
    background: #4a5568;
    bottom: -50px;
}

.barrier-stripe::before { left: 10px; }
.barrier-stripe::after { right: 10px; }

/* Cones */
.cone {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--orange);
    z-index: 5;
}

.cone::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 8px;
    background: var(--yellow);
    top: 10px;
    left: -20px;
}

.cone-1 {
    bottom: 18%;
    right: 25%;
}

.cone-2 {
    bottom: 18%;
    right: 15%;
}

.cone-3 {
    bottom: 18%;
    left: 35%;
}

/* Workers */
.worker {
    position: absolute;
    z-index: 15;
}

.worker-1 {
    top: 15%;
    left: 15%;
}

.worker-2 {
    bottom: 20%;
    right: 20%;
}

.worker-head {
    width: 35px;
    height: 35px;
    background: #fbbf24;
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
}

.worker-head::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 8px;
    background: var(--yellow);
    top: -5px;
    left: 2.5px;
    border-radius: 10px 10px 0 0;
}

.worker-body {
    width: 40px;
    height: 50px;
    background: var(--yellow);
    margin: 0 auto;
    border-radius: 0.5rem;
}

.worker-laptop {
    width: 30px;
    height: 20px;
    background: #2d3748;
    margin: 0.5rem auto 0;
    border-radius: 0.25rem;
}

.worker-arm {
    width: 20px;
    height: 35px;
    background: var(--yellow);
    position: absolute;
    right: -10px;
    top: 40px;
    border-radius: 0.5rem;
    transform: rotate(25deg);
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        gap: 2rem;
    }
    
    .image-content {
        height: 400px;
    }
    
    .monitor-screen {
        width: 350px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .text-content {
        max-width: 100%;
        text-align: center;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .image-content {
        height: 350px;
    }
    
    .monitor-screen {
        width: 300px;
        height: 200px;
    }
    
    .content-box.large {
        width: 140px;
        height: 90px;
    }
    
    .content-box.small {
        width: 80px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .image-content {
        height: 300px;
    }
    
    .monitor-screen {
        width: 250px;
        height: 170px;
    }
    
    .barrier {
        width: 80px;
        height: 40px;
    }
    
    .cone {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid var(--orange);
    }
    
    .cone::after {
        width: 30px;
        left: -15px;
    }
}