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

:root {
    --primary-dark: #330552;
    --primary-medium: #470374;
    --accent-bright: #B13DFF;
    --accent-light: #E4BBFF;
    --background-light: #EFD7FF;
    --background-lighter: #FBF6FF;
    --background-white: #FFFFFF;
    --text-dark: #330552;
    --text-medium: #470374;
    --text-light: #666666;
    --border-light: #E4BBFF;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background: var(--background-white);
    line-height: 1.6;
    font-size: 16px;
    margin: 0;
    overflow-x: hidden;
}

.split-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.left-content {
    width: 50%;
    display: flex;
    align-items: center;
    background: var(--background-white);
    overflow: hidden;
    height: 100vh;
}

.content-wrapper {
    padding: 60px;
    max-width: 600px;
    width: 100%;
}

.hero-section {
    text-align: left;
    margin-bottom: 48px;
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(11%) sepia(25%) saturate(5932%) hue-rotate(263deg) brightness(74%) contrast(116%);
}

.brand-name {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.launch-date {
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    background: var(--background-lighter);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.badge-live {
    color: var(--text-dark);
}

.badge-rest {
    color: var(--text-dark);
}

.main-title {
    font-size: 36px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.tagline {
    font-size: 18px;
    color: var(--text-dark);
    opacity: 0.9;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 8px;
}

.main-content {
    text-align: left;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .main-content {
        margin-bottom: 0;
    }
}

.description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 300;
}

.cta-lead {
    font-size: 16px;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 8px;
    font-weight: 300;
    line-height: 1.65;
}

.cta-section {
    margin-top: 36px;
    margin-bottom: 24px;
}

.primary-cta-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    color: var(--background-white);
    background: linear-gradient(135deg, var(--accent-bright) 0%, var(--primary-medium) 100%);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.primary-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-medium) 0%, var(--accent-bright) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary-cta-btn:hover::before {
    opacity: 1;
}

.primary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(177, 61, 255, 0.3);
}

.primary-cta-btn span {
    position: relative;
    z-index: 1;
}

footer {
    text-align: left;
    padding-top: 40px;
    border-top: 1px solid rgba(51, 5, 82, 0.2);
}

.footer-email {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--text-dark);
}

.footer-email a {
    color: var(--accent-bright);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-email a:hover {
    text-decoration: underline;
    color: var(--primary-medium);
}

.footer-legal {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-light);
}

.footer-divider {
    margin: 0 12px;
    color: var(--text-light);
    opacity: 0.5;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-dark) !important;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
}

.footer-linkedin:hover {
    color: #0077B5 !important; /* LinkedIn brand color */
    text-decoration: none;
}

.footer-linkedin svg {
    width: 14px;
    height: 14px;
}

.right-image {
    width: 50%;
    position: relative;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-lighter) 100%);
    height: 100vh;
    overflow: hidden;
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-placeholder {
    display: none;
    width: 100%;
    height: 100%;
    padding: 60px;
    align-items: center;
    justify-content: center;
}

.right-image.placeholder .image-placeholder {
    display: flex;
}

.placeholder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

.placeholder-item {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--background-lighter) 100%);
    border-radius: 12px;
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.placeholder-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 40%;
    background: var(--primary-medium);
    opacity: 0.2;
    border-radius: 50%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 5, 82, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--background-white);
    margin: 15% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    text-align: center;
    position: relative;
    border: 2px solid var(--border-light);
    box-shadow: 0 10px 30px rgba(51, 5, 82, 0.2);
}

.modal-content h2 {
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-size: 24px;
}

.modal-content p {
    color: var(--text-dark);
    line-height: 1.6;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    color: var(--accent-light);
    cursor: pointer;
    transition: color 0.2s;
}

.close:hover {
    color: var(--accent-bright);
}

@media (max-width: 1024px) {
    .content-wrapper {
        padding: 40px;
    }
    
    .brand-logo {
        width: 44px;
        height: 44px;
    }
    
    .brand-name {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }
    
    .description strong,
    .cta-lead strong {
        font-weight: 600;
    }
    
    .no-tel {
        pointer-events: none;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
        color: inherit;
        text-decoration: none !important;
    }
    
    a[href^="tel:"] {
        pointer-events: none;
        color: inherit;
        text-decoration: none;
    }
    
    .left-content {
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        overflow-y: visible;
        padding: 60px 0 20px 0;
    }
    
    .content-wrapper {
        padding: 0 24px;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-section {
        margin-bottom: 28px;
    }
    
    .brand-container {
        flex-wrap: wrap;
        gap: 14px;
    }
    
    .brand-logo {
        width: 54px;
        height: 54px;
    }
    
    .brand-name {
        font-size: 44px;
    }
    
    .main-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .status-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .tagline {
        font-size: 18px;
        margin-bottom: 14px;
    }
    
    .description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    
    .cta-lead {
        font-size: 16px;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .cta-section {
        margin-top: 24px;
        margin-bottom: 0;
    }
    
    .primary-cta-btn {
        display: inline-block;
        width: auto;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .right-image {
        width: 100%;
        height: 40vh;
        min-height: 300px;
    }
    
    footer {
        padding-top: 30px;
        margin-top: 60px;
        border-top: 1px solid rgba(51, 5, 82, 0.2);
    }
    
    .footer-email,
    .footer-legal {
        font-size: 12px;
    }
    
    .modal-content {
        margin: 20% 20px;
        max-width: calc(100% - 40px);
        padding: 20px;
    }
    
    .modal-content h2 {
        font-size: 20px;
    }
    
    .modal-content p {
        font-size: 14px;
    }
}

@media (min-width: 375px) and (max-width: 768px) {
    .content-wrapper {
        padding: 0 32px;
    }
}

@media (min-width: 414px) and (max-width: 768px) {
    .content-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 40px;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .tagline {
        font-size: 17px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .cta-lead {
        font-size: 15px;
    }
    
    .primary-cta-btn {
        font-size: 15px;
        padding: 14px 20px;
        display: inline-block;
        width: auto;
    }
    
    .right-image {
        height: 35vh;
        min-height: 250px;
    }
}