/* ============================================================
   EventMeNow – UI Effects & Animations (Dark/Light Theme)
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   Specular / Glossy Button Sweep
   ────────────────────────────────────────────────────────── */
.web-btn1,
.web-btn2,
.web-btn-outline,
.web-btn-white {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.web-btn1::before,
.web-btn2::before,
.web-btn-outline::before,
.web-btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    transition: left 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 2;
    pointer-events: none;
}

.web-btn1:hover::before,
.web-btn2:hover::before,
.web-btn-outline:hover::before,
.web-btn-white:hover::before {
    left: 150%;
}

/* ──────────────────────────────────────────────────────────
   Border Glow (mouse-tracking)
   ────────────────────────────────────────────────────────── */
.glow-card {
    --mouse-x: 50%;
    --mouse-y: 50%;
    position: relative;
}

.glow-card::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: inherit;
    background: radial-gradient(
        350px circle at var(--mouse-x) var(--mouse-y),
        rgba(124, 58, 237, 0.25),
        transparent 60%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.glow-card:hover::after {
    opacity: 1;
}

/* Light section glow uses different color */
.section-light .glow-card::after {
    background: radial-gradient(
        350px circle at var(--mouse-x) var(--mouse-y),
        rgba(124, 58, 237, 0.15),
        transparent 60%
    );
}

.glow-card > * {
    position: relative;
    z-index: 1;
}

/* ──────────────────────────────────────────────────────────
   3D Card Tilt
   ────────────────────────────────────────────────────────── */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
    will-change: transform;
}

.tilt-card.feature-card:hover,
.tilt-card.cat-card:hover {
    transform: none; /* JS manages transform */
}

.tilt-card .feature-icon,
.tilt-card .cat-card-icon {
    transform: translateZ(30px);
}

.tilt-card h5,
.tilt-card .cat-card-name {
    transform: translateZ(20px);
}

/* ──────────────────────────────────────────────────────────
   Custom Cursor – Gradient Dot + Outlined Ring
   ────────────────────────────────────────────────────────── */
body.custom-cursor-active { cursor: none; }

body.custom-cursor-active a,
body.custom-cursor-active button,
body.custom-cursor-active [role="button"],
body.custom-cursor-active input,
body.custom-cursor-active textarea,
body.custom-cursor-active select,
body.custom-cursor-active label {
    cursor: none;
}

/* Dot – small gradient circle */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--gradient-main);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background 0.25s ease, box-shadow 0.25s ease;
}
/* Sparkle — four-pointed star that appears on hover */
.cursor-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.25s;
    background: transparent;
    /* Four-pointed star via clip-path */
    clip-path: polygon(50% 0%, 60% 35%, 100% 50%, 60% 65%, 50% 100%, 40% 65%, 0% 50%, 40% 35%);
    background: linear-gradient(135deg, rgba(124,58,237,0.5), rgba(245,158,11,0.4));
}

/* Ring – thin outlined circle with breathing pulse */
@keyframes cursor-breathe {
    0%, 100% { border-color: rgba(124,58,237,0.2); }
    50%      { border-color: rgba(124,58,237,0.4); }
}
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1.5px solid rgba(124,58,237,0.25);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    will-change: transform;
    animation: cursor-breathe 3s ease-in-out infinite;
    transition: width 0.35s cubic-bezier(0.23,1,0.32,1),
                height 0.35s cubic-bezier(0.23,1,0.32,1),
                border-color 0.3s,
                background 0.3s,
                opacity 0.3s;
    opacity: 0.85;
}

/* Hover state – ring expands, sparkle appears, dot gets warm glow */
.cursor-ring.is-hovering {
    width: 48px;
    height: 48px;
    border-color: rgba(124,58,237,0.45);
    background: radial-gradient(circle, rgba(124,58,237,0.06) 0%, transparent 70%);
    opacity: 1;
    animation: none;
}
.cursor-dot.is-hovering {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #7c3aed, #f59e0b);
    box-shadow: 0 0 12px rgba(124,58,237,0.4), 0 0 24px rgba(245,158,11,0.15);
}
.cursor-dot.is-hovering::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Click feedback – ring contracts with snap */
.cursor-ring.is-clicking {
    width: 20px;
    height: 20px;
    border-color: rgba(124,58,237,0.6);
    background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 60%);
    opacity: 1;
    animation: none;
}

/* ──────────────────────────────────────────────────────────
   Hero Mouse-reactive Blobs + Spotlight
   ────────────────────────────────────────────────────────── */
.hero-section::before { pointer-events: none; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    filter: blur(40px);
}

.hero-blob-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.45) 0%, rgba(124, 58, 237, 0.15) 35%, transparent 65%);
    top: -120px;
    right: -80px;
}

.hero-blob-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.35) 0%, rgba(59, 130, 246, 0.10) 35%, transparent 65%);
    bottom: -100px;
    left: -60px;
}

.hero-blob-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.28) 0%, rgba(236, 72, 153, 0.08) 35%, transparent 65%);
    top: 30%;
    left: 40%;
}

/* Mouse-following spotlight */
.hero-spotlight {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.22) 0%, rgba(59, 130, 246, 0.10) 30%, transparent 55%);
    filter: blur(50px);
    opacity: 0;
    transition: opacity 0.4s ease;
    will-change: transform;
    transform: translate(-50%, -50%);
}

.hero-section:hover .hero-spotlight {
    opacity: 1;
}

/* ──────────────────────────────────────────────────────────
   Scroll Reveal
   ────────────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    will-change: opacity, transform;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ──────────────────────────────────────────────────────────
   Floating Decorative Elements
   ────────────────────────────────────────────────────────── */
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes float-rotate {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(10deg); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.float-element {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
}

.float-1 {
    width: 80px;
    height: 80px;
    background: rgba(124, 58, 237, 0.06);
    animation: float-y 6s ease-in-out infinite;
}

.float-2 {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.06);
    animation: float-rotate 8s ease-in-out infinite;
}

.float-3 {
    width: 120px;
    height: 120px;
    border: 1px solid rgba(124, 58, 237, 0.1);
    background: transparent;
    animation: pulse-soft 7s ease-in-out infinite;
}

.category-bar { position: relative; }

/* ──────────────────────────────────────────────────────────
   Gradient Animations
   ────────────────────────────────────────────────────────── */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated gradient text for hero accent */
.hero-section h1 .accent.gradient-text {
    background: linear-gradient(90deg, #7c3aed, #3b82f6, #a78bfa, #7c3aed) !important;
    background-size: 300% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s linear infinite;
}

/* Typing cursor for hero word rotator */
.hero-typing-cursor {
    display: inline-block;
    width: 7px;
    height: .8em;
    margin-left: 5px;
    vertical-align: middle;
    border-radius: 2px;
    background: #7c3aed;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
    background-clip: initial;
    animation: cursor-blink 0.7s steps(1) infinite;
}
@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ──────────────────────────────────────────────────────────
   Scroll Stacks – Pinned Card Deck
   Cards stack from the bottom: as you scroll, each new
   card rises and overlaps the previous one.
   ────────────────────────────────────────────────────────── */
.scroll-stack-section {
    padding: 80px 0;
}

.scroll-stack-container {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.stack-card {
    position: sticky;
    margin-bottom: 40px;
}

.stack-card:last-child {
    margin-bottom: 0;
}

.stack-card-inner {
    background: rgba(18, 16, 31, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 44px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.stack-card-inner:hover {
    border-color: rgba(124,58,237,0.3);
    box-shadow: 0 12px 48px rgba(124,58,237,0.15), 0 6px 24px rgba(0,0,0,0.3);
}

/* Two-column layout: text + illustration */
.stack-card-layout {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stack-card-content {
    flex: 1;
    min-width: 0;
}

.stack-card-visual {
    flex-shrink: 0;
    width: 240px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stack-illustration {
    width: 100%;
    height: 100%;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.4s ease;
}

.stack-card-inner:hover .stack-illustration {
    opacity: 1;
    transform: scale(1.04);
}

/* Left accent bar */
.stack-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px 0 0 4px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.stack-card-inner:hover .stack-card-accent {
    opacity: 1;
}

/* Gradient icon variants */
.stack-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    margin-bottom: 18px;
}
.stack-card-icon.gradient-main { background: var(--gradient-main); }
.stack-card-icon.gradient-warm { background: var(--gradient-warm); }
.stack-card-icon.gradient-cool { background: var(--gradient-cool); }

.stack-card-number {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: 10px;
    opacity: 0.6;
}

.stack-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.stack-card-text {
    font-size: 0.92rem;
    color: var(--dark-muted);
    line-height: 1.8;
    margin: 0 0 18px;
}

/* Feature tags */
.stack-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-light);
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    white-space: nowrap;
}

.stack-tag i {
    font-size: 0.68rem;
    opacity: 0.8;
}

/*
   Each card sticks at the same top position but with increasing
   z-index so later cards rise OVER earlier ones as you scroll.
*/
.stack-card[data-stack-index="0"] { top: 100px; z-index: 10; }
.stack-card[data-stack-index="1"] { top: 100px; z-index: 20; }
.stack-card[data-stack-index="2"] { top: 100px; z-index: 30; }
.stack-card[data-stack-index="3"] { top: 100px; z-index: 40; }
.stack-card[data-stack-index="4"] { top: 100px; z-index: 50; }
.stack-card[data-stack-index="5"] { top: 100px; z-index: 60; }

@media (max-width: 992px) {
    .stack-card-layout { gap: 28px; }
    .stack-card-visual { width: 200px; height: 166px; }
    .stack-card-inner { padding: 36px 32px; }
}

@media (max-width: 767px) {
    .scroll-stack-section { padding: 56px 0; }
    .stack-card { position: relative !important; top: auto !important; margin-bottom: 16px; }
    .stack-card-inner { padding: 28px 22px; border-radius: 16px; }
    .stack-card-layout { flex-direction: column; gap: 24px; }
    .stack-card-visual { width: 100%; height: 160px; }
    .stack-card-icon { width: 48px; height: 48px; font-size: 1.2rem; border-radius: 14px; margin-bottom: 14px; }
    .stack-card-title { font-size: 1.1rem; }
    .stack-card-text { font-size: 0.86rem; margin-bottom: 14px; }
    .stack-card-tags { gap: 6px; }
    .stack-tag { padding: 4px 10px; font-size: 0.68rem; }
}

/* ──────────────────────────────────────────────────────────
   Countdown Timer
   ────────────────────────────────────────────────────────── */
.launch-banner {
    background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(59,130,246,0.06), rgba(236,72,153,0.04));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 1.5rem;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Animated border glow */
.launch-banner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #7c3aed, #3b82f6, #ec4899, #7c3aed);
    background-size: 300% 300%;
    animation: gradient-shift 6s ease infinite;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.3;
}

.launch-banner::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: var(--dark-bg-2);
    border-radius: calc(1.5rem - 1px);
    z-index: -1;
}

/* Floating particles in launch banner */
.launch-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(124, 58, 237, 0.4);
    border-radius: 50%;
    animation: float-y 4s ease-in-out infinite;
}
.launch-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.launch-particles span:nth-child(2) { top: 25%; right: 15%; animation-delay: 0.8s; width: 6px; height: 6px; background: rgba(59,130,246,0.3); }
.launch-particles span:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1.6s; width: 3px; height: 3px; }
.launch-particles span:nth-child(4) { bottom: 30%; right: 25%; animation-delay: 2.4s; width: 5px; height: 5px; background: rgba(236,72,153,0.3); }
.launch-particles span:nth-child(5) { top: 50%; left: 5%; animation-delay: 3.2s; width: 4px; height: 4px; }

.countdown-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    min-width: 100px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.15);
}

.countdown-value {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark-muted);
    margin-top: 6px;
}

.countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(124, 58, 237, 0.3);
    line-height: 1;
    padding-bottom: 18px;
}

@keyframes countdown-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ──────────────────────────────────────────────────────────
   Countdown – blurred "date postponed" overlay
   ────────────────────────────────────────────────────────── */
.countdown-wrap {
    position: relative;
    display: inline-block;
}

.countdown-wrap .countdown-grid {
    filter: blur(6px);
    opacity: 0.45;
    pointer-events: none;
    user-select: none;
}

.countdown-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(10, 10, 15, 0.35);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    color: #fff;
    font-weight: 700;
    font-size: clamp(0.85rem, 1.6vw, 1.05rem);
    text-align: center;
    padding: 12px 20px;
    animation: countdown-overlay-glow 3s ease-in-out infinite;
}

.countdown-overlay i {
    font-size: 1.2rem;
    color: var(--primary-light, #a78bfa);
    animation: countdown-hourglass-flip 2.4s ease-in-out infinite;
}

@keyframes countdown-overlay-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(124, 58, 237, 0); }
    50% { box-shadow: 0 0 24px rgba(124, 58, 237, 0.25); }
}

@keyframes countdown-hourglass-flip {
    0%, 40% { transform: rotate(0deg); }
    50%, 90% { transform: rotate(180deg); }
    100% { transform: rotate(180deg); }
}

@media (max-width: 576px) {
    .countdown-overlay {
        font-size: 0.78rem;
        padding: 10px 14px;
        gap: 6px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .countdown-overlay,
    .countdown-overlay i {
        animation: none !important;
    }
}

/* ──────────────────────────────────────────────────────────
   Hero Word Cloud
   ────────────────────────────────────────────────────────── */
.word-cloud {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 10px;
    user-select: none;
}

.wc-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: nowrap;
}

/* Word base */
.wc-word {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0;
    transform: translateY(18px);
}

/* Sizes */
.wc-xs { font-size: 0.72rem; }
.wc-sm { font-size: 0.95rem; }
.wc-md { font-size: 1.25rem; }
.wc-lg { font-size: 1.6rem; }
.wc-xl { font-size: clamp(2.2rem, 5vw, 3.4rem); letter-spacing: 0.08em; }

/* Color variants */
.wc-ghost { color: rgba(255, 255, 255, 0.08); }
.wc-muted { color: rgba(255, 255, 255, 0.18); }
.wc-accent { color: rgba(124, 58, 237, 0.35); }
.wc-tagline {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.3);
}

/* Gradient hero words */
.wc-gradient {
    background: linear-gradient(90deg, #7c3aed, #3b82f6, #a78bfa, #7c3aed);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 5s linear infinite;
}

/* Vertical words */
.wc-vertical {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    line-height: 1;
}

/* Revealed state (set by JS) */
.wc-word.wc-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover glow on individual words */
.word-cloud:hover .wc-ghost { color: rgba(255, 255, 255, 0.12); }
.word-cloud:hover .wc-muted { color: rgba(255, 255, 255, 0.25); }
.word-cloud:hover .wc-accent { color: rgba(124, 58, 237, 0.5); }

/* Word float animation */
@keyframes wc-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.wc-word.wc-float {
    animation: wc-float var(--wc-float-dur, 4s) ease-in-out infinite;
    animation-delay: var(--wc-float-delay, 0s);
}

/* Hero row emphasis */
.wc-hero-row { margin-top: 10px; }
.wc-tagline-row { margin-top: -2px; }

/* ──────────────────────────────────────────────────────────
   Responsive & Accessibility Overrides
   ────────────────────────────────────────────────────────── */
@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring { display: none !important; }

    body.custom-cursor-active,
    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active [role="button"] { cursor: auto; }

    body.custom-cursor-active a,
    body.custom-cursor-active button { cursor: pointer; }

    .tilt-card { transform: none !important; }
    .glow-card::after { display: none; }

    .web-btn1:active::before,
    .web-btn2:active::before,
    .web-btn-outline:active::before,
    .web-btn-white:active::before { left: 150%; }
}

@media (max-width: 767px) {
    .hero-blob { display: none; }
    .hero-spotlight { display: none; }
    .float-element { display: none; }

    .countdown-grid { gap: 8px; flex-wrap: nowrap; }
    .countdown-value { font-size: 1.5rem; }
    .countdown-item { padding: 10px 0; min-width: 0; flex: 1; border-radius: 12px; }
    .countdown-label { font-size: 0.62rem; letter-spacing: 0.04em; margin-top: 4px; }
    .countdown-sep { display: none; }

    .launch-banner { padding: 40px 20px; }
    .launch-particles { display: none; }

    /* Word cloud mobile */
    .word-cloud { gap: 4px; padding: 10px 0; }
    .wc-row { gap: 10px; }
    .wc-xs { font-size: 0.6rem; }
    .wc-sm { font-size: 0.78rem; }
    .wc-md { font-size: 1rem; }
    .wc-xl { font-size: clamp(1.6rem, 8vw, 2.4rem); }
    .wc-vertical { writing-mode: horizontal-tb; }
    .wc-word.wc-float { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    .float-element { animation: none; }
    .hero-section h1 .accent.gradient-text { animation: none !important; }
    .launch-banner::before { animation: none; }
    .launch-particles span { animation: none; }

    .web-btn1::before,
    .web-btn2::before,
    .web-btn-outline::before,
    .web-btn-white::before { transition: none; display: none; }

    .tilt-card { transform: none !important; transition: none !important; }
    .hero-blob { transition: none !important; }
    .hero-spotlight { display: none !important; }
    .cursor-dot, .cursor-ring { display: none !important; }
    .wc-word { opacity: 1; transform: none; }
    .wc-word.wc-float { animation: none; }
    .wc-gradient { animation: none !important; }
}
