:root {
    --color-dark-primary: #0B0E14;
    --color-cyan-accent: #00F5D4;
    --color-magenta-accent: #FF00F5;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-dark-primary);
    color: #D1D5DB;
    overflow-x: hidden;
}
.container { max-width: 1100px; }
.hero-bg { background: transparent; }

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.text-glow {
    text-shadow: 0 0 8px rgba(0, 245, 212, 0.5), 0 0 20px rgba(0, 245, 212, 0.3);
}

.cta-button {
    transition: all 0.3s ease;
    background-color: var(--color-cyan-accent);
    box-shadow: 0 0 15px 0 rgba(0, 245, 212, 0.4);
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px 0 rgba(0, 245, 212, 0.6);
}
.modal { transition: opacity 0.3s ease; }

@keyframes bubble-pulse { 0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.7); } 50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(0, 245, 212, 0); } }
.chat-bubble {
    animation: bubble-pulse 2s infinite;
}

/* "How it Works" Section */
.step-card {
    background-color: rgba(17, 24, 39, 0.5); /* bg-gray-900/50 */
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.step-icon {
    width: 3rem;
    height: 3rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background-color: var(--color-cyan-accent);
    color: var(--color-dark-primary);
    font-weight: 900;
    font-size: 1.25rem;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem; /* p-3 pl-10 */
    background-color: rgba(17, 24, 39, 0.5); /* bg-gray-900/50 */
    border: 1px solid rgba(55, 65, 81, 1); /* border-gray-600 */
    border-radius: 0.375rem; /* rounded-md */
    color: white;
    transition: all 0.2s ease-in-out;
}
.form-input:focus {
    outline: none;
    --tw-ring-color: var(--color-cyan-accent);
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
    border-color: transparent;
}
.form-input::placeholder {
    color: #9CA3AF; /* gray-400 */
}


/* Cookie Toggle Switch Styles */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}
.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #374151;
    transition: .4s;
    border-radius: 28px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--color-cyan-accent);
}
input:checked:disabled + .slider {
    background-color: #4B5563;
}
input:focus + .slider {
    box-shadow: 0 0 1px var(--color-cyan-accent);
}
input:checked + .slider:before {
    transform: translateX(22px);
}

