/* ── MyAgentFactory Website Styles ─────────────────────────────────── */

/* ── HTMX Request Indicators ──────────────────────────────────────── */
.htmx-request .send-label,
.htmx-request .send-icon { display: none; }
.htmx-request .send-spinner { display: inline-flex; }

/* ── CSS Custom Properties ──────────────────────────────────────────── */
:root {
    --brand-accent: #f59e0b;
    --brand-glow: rgba(245, 158, 11, 0.25);
    --glass-bg-light: rgba(255, 253, 248, 0.85);
    --glass-bg-dark: rgba(15, 23, 42, 0.7);
    --glass-border-light: rgba(231, 229, 228, 0.6);
    --glass-border-dark: rgba(148, 163, 184, 0.1);
    --transition-base: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --purple-glow: rgba(139, 92, 246, 0.25);
    --pink-glow: rgba(236, 72, 153, 0.25);
    --orange-glow: rgba(249, 115, 22, 0.25);
}

/* ── Base & Typography ──────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── Skip Link (Accessibility) ──────────────────────────────────────── */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--brand-accent);
    color: #fff;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    text-decoration: none;
    transition: top var(--transition-base);
}

.skip-link:focus {
    top: 0;
}

/* ── Glass Morphism ─────────────────────────────────────────────────── */
.glass {
    background: var(--glass-bg-light);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-light);
}

.dark .glass {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border-dark);
}

.glass-card {
    position: relative;
    background: var(--glass-bg-light);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-light);
    border-radius: 20px;
    padding: 2rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    overflow: hidden;
}

.dark .glass-card {
    background: rgba(15, 23, 42, 0.5);
    border-color: rgba(148, 163, 184, 0.08);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 30px var(--brand-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dark .glass-card:hover {
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px var(--brand-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* ── Gradient Glass Card Variants ──────────────────────────────────── */
.glass-card-purple:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 30px var(--purple-glow);
}
.dark .glass-card-purple:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--purple-glow);
}

.glass-card-pink:hover {
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 30px var(--pink-glow);
}
.dark .glass-card-pink:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--pink-glow);
}

.glass-card-orange:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 30px var(--orange-glow);
}
.dark .glass-card-orange:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px var(--orange-glow);
}

/* ── Mock UI / Chat Bubbles ────────────────────────────────────────── */
.mock-ui-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

.mock-chat-bubble {
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border-light);
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    max-width: 85%;
    transform-origin: left bottom;
    will-change: transform, opacity;
}
.mock-chat-bubble.right {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border: none;
    transform-origin: right bottom;
    margin-left: auto;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}
.dark .mock-chat-bubble {
    background: var(--glass-bg-dark);
    border-color: var(--glass-border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.dark .mock-chat-bubble.right {
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}
.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a8a29e;
    animation: typing 1.4s infinite ease-in-out both;
}
.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ── Gradient Backgrounds ───────────────────────────────────────────── */
.bg-gradient-radial {
    background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
}

.dark .bg-gradient-radial {
    background: radial-gradient(ellipse at 50% 0%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
}

.bg-gradient-mesh {
    background:
        radial-gradient(at 20% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(at 80% 80%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
}

.dark .bg-gradient-mesh {
    background:
        radial-gradient(at 20% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
        radial-gradient(at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(at 50% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
}

/* Rich multi-color mesh for hero sections */
.bg-hero-mesh {
    background:
        radial-gradient(ellipse at 15% 15%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
}

.dark .bg-hero-mesh {
    background:
        radial-gradient(ellipse at 15% 15%, rgba(6, 182, 212, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
}

/* ── Animated Floating Orbs ────────────────────────────────────────── */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    pointer-events: none;
    will-change: transform;
}

.dark .orb { opacity: 0.4; }

.orb-cyan {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, rgba(6, 182, 212, 0) 70%);
    animation: orbFloat1 8s ease-in-out infinite alternate;
}

.orb-purple {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0) 70%);
    animation: orbFloat2 10s ease-in-out infinite alternate;
}

.orb-pink {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, rgba(236, 72, 153, 0) 70%);
    animation: orbFloat3 12s ease-in-out infinite alternate;
}

.orb-orange {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.35) 0%, rgba(249, 115, 22, 0) 70%);
    animation: orbFloat4 9s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, -40px) scale(1.1); }
}
@keyframes orbFloat2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-40px, 30px) scale(1.15); }
}
@keyframes orbFloat3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, 20px) scale(0.9); }
}
@keyframes orbFloat4 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, -35px) scale(1.05); }
}

/* ── Glossy Sphere ─────────────────────────────────────────────────── */
.glossy-sphere {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
}

.glossy-sphere::before {
    content: '';
    position: absolute;
    top: 8%;
    left: 15%;
    width: 35%;
    height: 25%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 80%);
    border-radius: 50%;
    transform: rotate(-20deg);
}

.glossy-sphere::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}

/* ── Gradient Text ─────────────────────────────────────────────────── */
.gradient-text-vibrant {
    background: linear-gradient(135deg, #f97316 0%, #f59e0b 60%, #fbbf24 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Ambient Image Overlays ────────────────────────────────────────── */
.data-stream {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -150%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.4), transparent);
    width: 200%;
    height: 100%;
    transform: skewX(-45deg);
    animation: streamSweep 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

.data-stream.stream-2 {
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.3), transparent);
    animation-duration: 6s;
    animation-delay: 1.5s;
    height: 70%;
    top: 15%;
}

@keyframes streamSweep {
    0% { transform: translateX(0) skewX(-45deg); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(100%) skewX(-45deg); opacity: 0; }
}

.gradient-text-warm {
    background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cool {
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    color: #fff;
    font-weight: 600;
    border-radius: 14px;
    transition: all var(--transition-base);
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: inherit;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.35), 0 4px 15px rgba(139, 92, 246, 0.2);
}

.btn-primary:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    color: var(--brand-accent);
    font-weight: 600;
    border-radius: 14px;
    border: 2px solid rgba(6, 182, 212, 0.4);
    transition: all var(--transition-base);
    text-decoration: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--brand-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
}

.btn-secondary:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* ── Section Spacing ────────────────────────────────────────────────── */
.section {
    padding: 3.5rem 1.5rem;
}

@media (min-width: 768px) {
    .section { padding: 5rem 2rem; }
}

.section-tight {
    padding: 2rem 1.5rem;
}

/* ── Animated Reveal ────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
}

/* ── Glow Effects ───────────────────────────────────────────────────── */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.5), rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.glow-border:hover::before {
    opacity: 1;
}

/* ── Animated Gradient Border ──────────────────────────────────────── */
.gradient-border {
    position: relative;
    border: none !important;
}

.gradient-border::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.2), rgba(249, 115, 22, 0.15));
    background-size: 300% 300%;
    animation: borderGradient 6s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderGradient {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ── Feature Icon ───────────────────────────────────────────────────── */
.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    color: var(--brand-accent);
    flex-shrink: 0;
}

.dark .feature-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.1));
}

.feature-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: #8b5cf6;
}
.dark .feature-icon-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(139, 92, 246, 0.1));
}

.feature-icon-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}
.dark .feature-icon-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(236, 72, 153, 0.1));
}

.feature-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    color: #f59e0b;
}
.dark .feature-icon-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(249, 115, 22, 0.1));
}

.feature-icon-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}
.dark .feature-icon-emerald {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
}

/* ── Pricing Card Recommended ───────────────────────────────────────── */
.pricing-recommended {
    border-color: var(--brand-accent);
    box-shadow: 0 0 40px var(--brand-glow), 0 0 80px rgba(6, 182, 212, 0.1);
}

/* ── Nav ────────────────────────────────────────────────────────────── */
.nav-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.dark .nav-glass {
    background: rgba(15, 23, 42, 0.88);
    border-bottom-color: rgba(148, 163, 184, 0.08);
}

.nav-dropdown {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.dark .nav-dropdown {
    background: #1e293b;
    border-color: rgba(148, 163, 184, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-accent), #8b5cf6);
    transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* ── Theme Toggle ───────────────────────────────────────────────────── */
.theme-toggle {
    position: relative;
    width: 52px;
    height: 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition-base);
}

.dark .theme-toggle {
    background: linear-gradient(135deg, #334155, #1e293b);
}

.theme-toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.dark .theme-toggle-thumb {
    transform: translateX(24px);
}

/* ── Accordion ──────────────────────────────────────────────────────── */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content.is-open {
    max-height: 500px;
}

/* ── Stats Section ─────────────────────────────────────────────────── */
.stats-section {
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(236, 72, 153, 0.03) 100%);
}

.dark .stats-section::before {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(236, 72, 153, 0.05) 100%);
}

/* ── Pulsing Dot ────────────────────────────────────────────────────── */
.pulse-dot {
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    transform: translateY(-50%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* ── Particle Grid Background ──────────────────────────────────────── */
.particle-grid {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.dark .particle-grid {
    background-image:
        radial-gradient(circle at 1px 1px, rgba(148, 163, 184, 0.08) 1px, transparent 0);
}

/* ── Focus Styles ───────────────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
}

/* ── Selection ──────────────────────────────────────────────────────── */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: inherit;
}

/* ── Scrollbar (dark mode) ──────────────────────────────────────────── */
.dark ::-webkit-scrollbar {
    width: 8px;
}

.dark ::-webkit-scrollbar-track {
    background: #0f172a;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* ── Animated Ring ──────────────────────────────────────────────────── */
.animated-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0.15;
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.05); opacity: 0.25; }
}

/* ── Gradient Line Divider ─────────────────────────────────────────── */
.gradient-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), rgba(139, 92, 246, 0.2), transparent);
    border: none;
}
