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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111111;
    background-image: url('tinyoffice-ai.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.85);
    z-index: 0;
}

.logo {
    position: fixed;
    top: 40px;
    right: 60px;
    background-color: #ffffff;
    color: #111111;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.landing-container {
    position: relative;
    z-index: 1;
    max-width: 500px;
    width: 100%;
    text-align: center;
    background: transparent;
    padding: 80px 60px;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

h1 {
    font-family: 'Baskervville', serif;
    font-size: 66px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin: 0;
}

.subtitle {
    font-family: 'Old Standard TT', serif;
    font-style: italic;
    font-size: 19px;
    color: #888888;
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    background-color: #ffffff;
    color: #111111;
    border: none;
    padding: 16px 60px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
}

.cta-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-button:active {
    transform: scale(0.98);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        top: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }

    .landing-container {
        padding: 60px 40px;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 17px;
    }

    .cta-button {
        padding: 14px 40px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .landing-container {
        padding: 40px 30px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }
}
