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

body {
    font-family: 'DM Sans', sans-serif;
    overflow-x: hidden;
    background: #0A0E27;
    color: white;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1A1F3A;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #008751, #FCD116);
    border-radius: 10px;
}

/* Gradient mesh background */
.gradient-mesh {
    background: 
        radial-gradient(at 20% 30%, rgba(0, 135, 81, 0.2) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(252, 209, 22, 0.2) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(232, 17, 45, 0.1) 0px, transparent 50%);
}

/* Animated gradient border */
.gradient-border {
    position: relative;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, #008751, #FCD116, #E8112D, #008751);
    background-size: 300% 300%;
    animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.gradient-border-inner {
    background: #0A0E27;
    border-radius: 22px;
    padding: 2rem;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(2deg); }
    75% { transform: translateY(-10px) rotate(-2deg); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

/* Pulse glow */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 135, 81, 0.3); }
    50% { box-shadow: 0 0 40px rgba(0, 135, 81, 0.6), 0 0 60px rgba(252, 209, 22, 0.3); }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Mockup device */
.phone-mockup {
    position: relative;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #1e2235, #0f1220);
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0A0E27;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

/* Roadmap timeline */
.roadmap-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #008751, #FCD116, #E8112D);
    transform: translateX(-50%);
}

.roadmap-item {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item:nth-child(even) {
    transform: translateX(50px);
}

.roadmap-item:nth-child(even).visible {
    transform: translateX(0);
}

/* Card hover effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 135, 81, 0.3);
}

/* Number counter animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 1s ease-out;
}

/* Confetti particles */
.particle {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
}

/* Glowing text */
.glow-text {
    text-shadow: 0 0 20px rgba(0, 135, 81, 0.5),
                 0 0 40px rgba(0, 135, 81, 0.3);
}

/* Interactive button */
.btn-interactive {
    position: relative;
    overflow: hidden;
}

.btn-interactive::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-interactive:hover::before {
    width: 300px;
    height: 300px;
}

/* Ticket mockup */
.ticket {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.ticket::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #008751 33%, #FCD116 33%, #FCD116 66%, #E8112D 66%);
}

.ticket-punch {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #0A0E27;
    border-radius: 50%;
}

.ticket-punch-left {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
}

.ticket-punch-right {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
}

/* Scan animation */
@keyframes scan {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.scan-line {
    animation: scan 2s ease-in-out infinite;
}

/* Typing animation */
@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.typing-text {
    overflow: hidden;
    border-right: 3px solid #008751;
    white-space: nowrap;
    animation: typing 3s steps(30) 1s, blink 0.75s step-end infinite;
    display: inline-block;
}

/* Workflow switcher */
.workflow-content {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Team member photo styling */
.team-photo-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto 1.5rem;
    border-radius: 25%;
    padding: 4px;
    background: linear-gradient(135deg, #008751, #FCD116, #E8112D);
    box-shadow: 0 10px 30px rgba(0, 135, 81, 0.3);
}

.team-photo {
    width: 100%;
    height: 100%;
    border-radius: 23%;
    object-fit: cover;
    border: 3px solid #0A0E27;
}