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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    background-image: url('assets/x402.svg');
    background-size: 100vw 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.container {
    display: flex;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Left Section - Geometric Shape */
.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.geometric-shape {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
}

/* Right Section - Content */
.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 1.5rem 4rem 1rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.title {
    font-family: 'Instrument Serif', serif;
    font-size: 6.5rem;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-o-dot {
    position: relative;
}

.title-o-dot::before {
    content: '';
    position: absolute;
    width: 0.07em;
    height: 0.07em;
    background-color: #1a1a1a;
    border-radius: 50%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ripple-graphic {
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 390px;
}

.ripple {
    width: 100%;
    height: auto;
    display: block;
}

.buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    border: 1px solid #4a4a4a;
    background-color: #e8e8e8;
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 140px;
    text-decoration: none;
}

.btn-text {
    display: inline-block;
    background-image: linear-gradient(to right, currentColor, currentColor);
    background-position: 100% 100%;
    background-size: 0% 1px;
    background-repeat: no-repeat;
    transition: background-size 0.5s ease;
}

.btn:hover {
    background-color: #d0d0d0;
    border-color: #333;
}

.btn:hover .btn-text {
    background-size: 100% 1px;
    background-position: 0% 100%;
}

.btn:active {
    transform: scale(0.98);
}

.subtitle {
    font-family: 'Instrument Serif', serif;
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 850rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    line-height: 1.3;
    word-spacing: -0.1em;
    color: #1a1a1a;
    max-width: 330px;
    margin-bottom: 2rem;
    text-align: justify;
    font-weight: 400rem;
}



/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-section {
        padding: 2rem;
        min-height: 400px;
    }

    .geometric-shape {
        max-width: 100%;
    }

    .right-section {
        padding: 3rem 2rem;
        max-width: 100%;
    }

    .title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3.5rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .subtitle {
        font-size: 1.25rem;
    }

    .plus-symbol {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 2rem;
        text-align: right;
    }
}

