* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25% 25%, #ffffff 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, #ffffff 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.container {
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
}

.content-section {
    max-width: 480px;
}

/* Company name styling - clean typography approach */
.company-header {
    text-align: center;
    margin-bottom: 40px;
}

.company-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.company-ticker {
    font-size: 0.875rem;
    color: #a1a1aa;
    font-weight: 400;
}

/* Update existing status badge for better spacing */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 32px;
    margin-top: 20px; /* Add some space after company info */
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Fix for text cutoff issue in h1 */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2; /* Increased from 1.1 to prevent cutoff */
    margin-bottom: 24px;
    padding: 4px 0; /* Added padding to prevent cutoff */
    background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Fallback for browsers that don't support background-clip */
    color: #ffffff;
    /* Ensure proper text rendering */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.description {
    font-size: 1.125rem;
    color: #a1a1aa;
    line-height: 1.6;
    margin-bottom: 40px;
}

.notify-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(20px);
    margin-bottom: 40px;
}

.notify-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.notify-subtitle {
    color: #a1a1aa;
    margin-bottom: 24px;
}

.notify-form {
    display: flex;
    gap: 12px;
}

.email-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.email-input::placeholder {
    color: #71717a;
}

.email-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.notify-btn {
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.notify-btn:hover {
    background: #f4f4f5;
    transform: translateY(-1px);
}

.links {
    display: flex;
    gap: 24px;
}

.link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 12px 0;
}

.link:hover {
    color: #ffffff;
}

.link-icon {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.form-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-subtitle {
    color: #a1a1aa;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #d4d4d8;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #71717a;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: #ffffff;
    color: #0a0a0a;
    border: none;
    border-radius: 12px;
    padding: 18px 32px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background: #f4f4f5;
    transform: translateY(-1px);
}

@media (max-width: 1024px) {
    .container {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 40px 24px;
        text-align: center;
    }

    .content-section {
        max-width: 600px;
        margin: 0 auto;
    }

    h1 {
        font-size: 2.5rem;
        line-height: 1.3; /* Slightly more line height on mobile */
        padding: 8px 0; /* More padding on mobile */
    }
    
    .company-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 24px 16px;
    }

    .form-section {
        padding: 32px 24px;
    }

    .notify-section {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .notify-form {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.4; /* Even more line height on small screens */
        padding: 8px 0;
    }
    
    .company-name {
        font-size: 1.25rem;
    }

    .links {
        justify-content: center;
    }
}

/* Center social links on desktop to match company header */
@media (min-width: 1025px) {
    .links {
        justify-content: center;
    }
}

/* Center social links to match company header for all larger screens */
@media (min-width: 769px) {
    .links {
        justify-content: center;
    }
}