* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f3e4;
    background: linear-gradient(180deg,rgba(247, 243, 228, 1) 20%, rgba(173, 231, 247, 1) 100%);    
    color: #053f37;
    position: relative;
    min-height: 100vh;
}

/* Grid background */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 120px 120px;
    pointer-events: none;
    z-index: 0;
}

.version-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 12px;
    color: #7a9a92;
}

.logo-placeholder {
    width: 100%;
    max-width: 420px;
    height: 200px;
    border-radius: 18px;
    /* background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0.20)); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #053f37;
}

.pill-badge {
    background-color: rgba(26, 11, 156, 0.06);
    border: 1px solid rgba(5, 63, 55, 0.09);
    color: rgb(65, 106, 130) !important;
    font-size: 0.9rem;
}


/* RIGHT SIDE */
.coming-soon {
    background: #020024;
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(0, 212, 255, 1) 100%);
    -webkit-background-clip: text;
    color: transparent;
}

.description p {
    font-size: 1.5rem;
    color: rgb(18, 53, 73);
}
