/* ==========================================================
   PLATINO WEBSITE — Plugin Edition (Styles)
   ========================================================== */

:root {
    --platino-blue: #1246C8;
    --platino-blue-glow: rgba(18, 70, 200, 0.4);
    --platino-green: #00A844;
    --platino-green-glow: rgba(0, 168, 68, 0.3);

    --bg-dark: #09090F;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-card: rgba(255, 255, 255, 0.08);

    --text-primary: #F0EDE8;
    --text-muted: #A0A0B8;

    --font-primary: 'Bricolage Grotesque', sans-serif;
    --font-secondary: 'DM Sans', sans-serif;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.launch-page {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

#platino-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--platino-blue);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s ease-out;
}

#platino-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(18, 70, 200, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease-out, width 0.3s, height 0.3s;
}

body.cursor-hover #platino-cursor {
    background: var(--platino-green);
    width: 14px;
    height: 14px;
}

body.cursor-hover #platino-cursor-follower {
    width: 54px;
    height: 54px;
    border-color: rgba(0, 168, 68, 0.4);
}

.launch-bg-noise {
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 1;
}

.launch-bg-glow {
    position: fixed;
    width: 60vw;
    height: 60vw;
    filter: blur(120px);
    opacity: 0.2;
    pointer-events: none;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: var(--platino-blue-glow);
}

.glow-2 {
    bottom: -15%;
    right: -10%;
    background: var(--platino-green-glow);
}

.launch-container {
    max-width: 900px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    padding: 4rem 0;
}

.platino-logo {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    letter-spacing: -0.04em;
    margin-bottom: 3.5rem;
}

.part-platino {
    color: #fff;
}

.part-website {
    color: var(--platino-blue);
}

.part-i {
    color: var(--platino-green);
}

.launch-pretag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.launch-pretag .dot {
    width: 7px;
    height: 7px;
    background: var(--platino-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--platino-green);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.launch-title {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    color: #fff;
}

.launch-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.launch-countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 4rem;
}

.bento-item {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-card);
    border-radius: 24px;
    padding: 2.5rem 1rem;
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.bento-item .number {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bento-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    color: #777;
    font-weight: 600;
}

.bento-item.highlight .number {
    color: var(--platino-blue);
}

.bento-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(18, 70, 200, 0.3);
}

.launch-cta-pretext {
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.platino-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-spring);
}

.platino-wa-btn:hover {
    transform: scale(1.05) translateY(-5px);
    background: #20BA5A;
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.wa-icon {
    width: 24px;
    height: 24px;
}

.launch-form {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 480px;
    margin: 0 auto;
    transition: border-color 0.3s;
}

.launch-form:focus-within {
    border-color: var(--platino-blue);
}

.launch-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 1.5rem;
    color: #fff;
    outline: none;
    font-size: 0.95rem;
}

.platino-btn-launch {
    background: var(--platino-blue);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platino-btn-launch:hover {
    background: #1a56e0;
    transform: translateX(3px);
}

.launch-footer {
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: #fff;
}

.copy {
    color: #555;
    font-size: 0.8rem;
}

@media (max-width: 600px) {
    .launch-countdown {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Admin Switch Styles (Used in WP Panel) --- */
.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 28px;
    margin-right: 15px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: #1246C8;
}

input:checked+.slider:before {
    transform: translateX(26px);
}