:root {
    --purple: #7c3aed;
    --blue: #f97316;
    --cyan: #06b6d4;
    --pink: #ec4899;
    --light: #f8f6ff;
    --light2: #eef2ff;
}

/* ── ANIMATED MESH BACKGROUND ── */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 15% 15%, rgba(167, 139, 250, 0.28) 0%, transparent 55%),
        radial-gradient(ellipse 60% 55% at 85% 80%, rgba(6, 182, 212, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 55% 50% at 65% 5%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at 50% 50%, rgba(244, 114, 182, 0.1) 0%, transparent 60%),
        linear-gradient(160deg, #f5f0ff 0%, #eef2ff 40%, #e0f2fe 80%, #f0fdf4 100%);
    animation: meshShift 14s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    100% {
        filter: hue-rotate(15deg) brightness(1.04);
    }
}

/* grid overlay */
.bg-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* ── PARTICLE CANVAS ── */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ── FLOATING TECH ICONS ── */
.icons-layer {
    position: fixed;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.tech-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(124, 58, 237, 0.15);
    backdrop-filter: blur(8px);
    animation: floatIcon linear infinite;
    opacity: 0;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
}

@keyframes floatIcon {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-15vh) rotate(360deg) scale(1.1);
        opacity: 0;
    }
}

/* ── LAYOUT ── */
.page {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
}

/* ── LOGO ── */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeDown 0.8s ease both;
}

.logo-img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.6));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Syne', sans-serif;
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(90deg, #a855f7, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 3px;
    color: rgba(79, 70, 229, 0.5);
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── BADGE ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.25);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #6d28d9;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeDown 0.9s ease 0.1s both;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #a855f7;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px #a855f7;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* ── HEADLINE ── */
.hero-headline {
    text-align: center;
    max-width: 780px;
    margin-bottom: 20px;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-headline h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 40%, #0891b2 80%, #312e81 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradShift 6s ease-in-out infinite;
}

@keyframes gradShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-headline .accent {
    display: block;
    font-style: italic;
    font-weight: 700;
    background: linear-gradient(90deg, #7c3aed, #2563eb, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── SUBHEAD ── */
.subhead {
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 300;
    color: rgba(55, 48, 163, 0.6);
    text-align: center;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 52px;
    animation: fadeUp 1s ease 0.35s both;
}

.subhead strong {
    color: #3730a3;
    font-weight: 500;
}

/* ── CTA BUTTONS ── */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
    animation: fadeUp 1s ease 0.45s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.2s;
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.08);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: scale(0.97);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.btn-icon { 
    font-size: 18px;
    line-height: 1;
}

/* ── TECH STACK STRIP ── */
.tech-strip {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 64px;
    animation: fadeUp 1s ease 0.55s both;
    flex-wrap: wrap;
    justify-content: center;
}

.tech-strip-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(79, 70, 229, 0.45);
    text-transform: uppercase;
    margin-right: 8px;
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    color: #4c1d95;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 4px rgba(124, 58, 237, 0.08);
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
}

.tech-pill:hover {
    border-color: rgba(124, 58, 237, 0.4);
    color: #6d28d9;
    background: rgba(124, 58, 237, 0.08);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.15);
}

/* ── COUNTDOWN ── */
.countdown-wrap {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    animation: fadeUp 1s ease 0.65s both;
}

.count-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.count-num {
    font-family: 'Syne', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 70px;
    text-align: center;
    line-height: 1;
}

.count-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: rgba(79, 70, 229, 0.45);
    text-transform: uppercase;
}

.count-sep {
    font-family: 'Syne', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: rgba(124, 58, 237, 0.2);
    align-self: center;
    margin-top: -10px;
}

/* ── NOTIFY FORM ── */
.notify-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeUp 1s ease 0.75s both;
}

.notify-input {
    padding: 13px 20px;
    border-radius: 50px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: rgba(255, 255, 255, 0.8);
    color: #1e1b4b;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    width: 260px;
    outline: none;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.08);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.notify-input::placeholder {
    color: rgba(79, 70, 229, 0.35);
}

.notify-input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.btn-notify {
    padding: 13px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: #fff;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.35);
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 32px rgba(249, 115, 22, 0.35);
}

.notify-success {
    display: none;
    text-align: center;
    color: #059669;
    font-size: 14px;
    margin-top: 6px;
}

/* ── FOOTER ── */
.footer {
    font-size: 12px;
    color: rgba(79, 70, 229, 0.4);
    text-align: center;
    letter-spacing: 0.5px;
    animation: fadeUp 1s ease 0.85s both;
}

.footer a {
    color: rgba(79, 70, 229, 0.55);
    text-decoration: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── GLOW ORBS ── */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: orbDrift 18s ease-in-out infinite;
}

.orb1 {
    width: 400px;
    height: 400px;
    top: -10%;
    left: -10%;
    background: rgba(167, 139, 250, 0.25);
    animation-delay: 0s;
}

.orb2 {
    width: 300px;
    height: 300px;
    bottom: 0;
    right: -5%;
    background: rgba(6, 182, 212, 0.2);
    animation-delay: -6s;
}

.orb3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 60%;
    background: rgba(236, 72, 153, 0.12);
    animation-delay: -12s;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(40px, -30px);
    }

    66% {
        transform: translate(-20px, 30px);
    }
}

/* Divider line */
.divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(124, 58, 237, 0.2), transparent);
    margin: 0 auto 40px;
    animation: fadeUp 1s ease 0.6s both;
}