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

:root {
    --slate-950: #020617;
    --slate-900: #0f172a;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --cyan-400: #22d3ee;
}

html {
    scroll-behavior: smooth;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Custom scrollbar for showcase preview */
.scrollbar-thin::-webkit-scrollbar {
    width: 6px;
}

.scrollbar-thin::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

.scrollbar-thin::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #030712;
    color: var(--slate-100);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Removed noise texture - was showing as visible squares/grid pattern */
    /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"); */
    pointer-events: none;
    z-index: 1;
}

#root {
    position: relative;
    z-index: 2;
}

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

::-webkit-scrollbar-track {
    background: var(--slate-950);
}

::-webkit-scrollbar-thumb {
    background: var(--slate-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--slate-500);
}

/* Selection Color */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.navbar-logo img {
    height: 32px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-logo:hover img {
    transform: scale(1.1) rotate(5deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

.nav-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.875rem;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-2px);
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (max-width: 768px) {
    .navbar-actions {
        display: none;
    }
}

.btn-ghost {
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--slate-300);
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: color 0.3s;
    text-decoration: none;
}

.btn-ghost:hover {
    color: white;
}

.btn-nav-primary {
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--blue-500);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-nav-primary:hover {
    background: var(--blue-600);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    overflow: hidden;
    padding-bottom: 6rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 2rem;
    }
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15), transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(168, 85, 247, 0.15), transparent 50%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite;
    border: none;
    box-shadow: none;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: var(--blue-500);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--purple-500);
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--cyan-400);
    top: 50%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.8), rgba(59, 130, 246, 0.6));
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    animation: floatParticle 8s ease-in-out infinite;
    pointer-events: none;
}

.particle:nth-child(4n+1) {
    animation-duration: 6s;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.6));
}

.particle:nth-child(4n+2) {
    animation-duration: 10s;
    width: 4px;
    height: 4px;
}

.particle:nth-child(4n+3) {
    animation-duration: 7s;
    animation-direction: reverse;
}

.particle:nth-child(4n+4) {
    animation-duration: 9s;
    width: 5px;
    height: 5px;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50px) translateX(-10px) scale(0.9);
        opacity: 1;
    }
    75% {
        transform: translateY(-30px) translateX(-20px) scale(1.1);
        opacity: 0.6;
    }
}

/* Beta Badge */
.beta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.15);
    border: 1px solid rgba(234, 179, 8, 0.4);
    border-radius: 2rem;
    color: #eab308;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #eab308;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    color: var(--slate-400);
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.social-proof span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-proof span::before {
    content: "•";
    color: var(--slate-600);
}

.social-proof span:first-child::before {
    display: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.6;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--slate-500);
    border-radius: 15px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-dot {
    width: 4px;
    height: 8px;
    background: var(--slate-400);
    border-radius: 2px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

.scroll-text {
    color: var(--slate-500);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--slate-400);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: var(--blue-600);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    will-change: transform;
}

.btn-primary:hover {
    box-shadow: 0 20px 50px -5px rgba(59, 130, 246, 0.8),
                0 0 60px -10px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    background: transparent;
    color: white;
    border: 2px solid var(--slate-700);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    will-change: transform;
}

.btn-secondary:hover {
    border-color: var(--blue-500);
    background: rgba(59, 130, 246, 0.1);
}

.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Section Container */
.section {
    padding: 8rem 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section {
        padding: 8rem 2rem;
    }
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, white, var(--slate-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--slate-400);
    font-size: 1.25rem;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom, var(--slate-950), var(--slate-900));
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    color: var(--blue-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--slate-800);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(168, 85, 247, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card {
    will-change: transform;
}

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

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    stroke: white;
    stroke-width: 2;
}

.icon-blue {
    background: rgba(59, 130, 246, 0.15);
}

.icon-yellow {
    background: rgba(234, 179, 8, 0.15);
}

.icon-yellow svg {
    stroke: #eab308;
}

.icon-purple {
    background: rgba(168, 85, 247, 0.15);
}

.icon-purple svg {
    stroke: var(--purple-500);
}

.icon-pink {
    background: rgba(236, 72, 153, 0.15);
}

.icon-pink svg {
    stroke: #ec4899;
}

.icon-green {
    background: rgba(34, 197, 94, 0.15);
}

.icon-green svg {
    stroke: #22c55e;
}

.icon-orange {
    background: rgba(249, 115, 22, 0.15);
}

.icon-orange svg {
    stroke: #f97316;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.feature-description {
    color: var(--slate-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works-section {
    background: var(--slate-950);
    position: relative;
}

.badge-purple {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 2rem;
    color: var(--purple-500);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gradient-purple-pink {
    background: linear-gradient(135deg, var(--purple-500), #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

@media (max-width: 1024px) {
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .steps-container {
        grid-template-columns: 1fr;
    }
}



.step-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.step-card {
    will-change: transform;
}

.step-number-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--purple-500);
}

.step-icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(168, 85, 247, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.step-icon-container svg {
    width: 2rem;
    height: 2rem;
    stroke: var(--purple-500);
    stroke-width: 2;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.step-description {
    color: var(--slate-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Showcase Section */
.showcase-section {
    background: linear-gradient(to bottom, var(--slate-950), var(--slate-900), var(--slate-950));
    position: relative;
}

.badge-green {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 2rem;
    color: #22c55e;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gradient-green-emerald {
    background: linear-gradient(135deg, #22c55e, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.showcase-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-top: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Showcase Selector */
.showcase-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid var(--slate-800);
    border-radius: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.showcase-item {
    will-change: transform;
}

.showcase-item.active {
    background: var(--slate-800);
    border-color: var(--blue-500);
}

.showcase-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.showcase-item-description {
    font-size: 0.95rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.showcase-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(51, 65, 85, 0.5);
    border-radius: 1rem;
    font-size: 0.75rem;
    color: var(--slate-300);
}

/* Showcase Preview */
.showcase-preview-wrapper {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.showcase-preview-container {
    position: relative;
}

.browser-chrome {
    background: var(--slate-900);
    border: 1px solid var(--slate-800);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3), 0 8px 10px -6px rgb(0 0 0 / 0.3);
    display: flex;
    flex-direction: column;
    height: 650px;
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--slate-900);
    border-bottom: 1px solid var(--slate-800);
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ef4444;
}

.dot-yellow {
    background: #eab308;
}

.dot-green {
    background: #22c55e;
}

.browser-url-bar {
    flex: 1;
    margin: 0 1rem;
    height: 28px;
    background: var(--slate-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
}

.browser-url-text {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.browser-url {
    flex: 1;
    margin-left: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--slate-950);
    border-radius: 0.375rem;
    font-size: 0.875rem;
    color: var(--slate-500);
}

.browser-content-scroll {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #020617;
    position: relative;
    min-height: 0;
}

.preview-content-wrapper {
    width: 100%;
    min-height: 100%;
}

.preview-inner {
    min-height: 1600px;
}

/* Custom Scrollbar for Preview */
.browser-content-scroll::-webkit-scrollbar {
    width: 6px;
}

.browser-content-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.browser-content-scroll::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 3px;
}

.browser-content-scroll::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

.preview-content {
    aspect-ratio: 16 / 9;
    background: var(--slate-800);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.preview-icon {
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.preview-icon svg {
    width: 3rem;
    height: 3rem;
    stroke: var(--slate-500);
    stroke-width: 2;
}

.preview-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.preview-subtitle {
    font-size: 1rem;
    color: var(--slate-400);
}

/* Pricing */
.pricing-section {
    background: var(--slate-950);
    position: relative;
}

.badge-orange {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 2rem;
    color: #f97316;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.gradient-orange-red {
    background: linear-gradient(135deg, #f97316, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card-wrapper {
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue-500);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.5);
    border: 2px solid var(--slate-800);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card {
    will-change: transform;
}

.pricing-tier {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.pricing-price-container {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.pricing-period {
    color: var(--slate-400);
    font-size: 1rem;
}

.pricing-description {
    color: var(--slate-400);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--slate-300);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(51, 65, 85, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check svg {
    width: 0.75rem;
    height: 0.75rem;
    stroke: var(--slate-300);
    stroke-width: 3;
}

.pricing-card.featured .feature-check {
    background: rgba(59, 130, 246, 0.2);
}

.pricing-card.featured .feature-check svg {
    stroke: var(--blue-500);
}

.pricing-button {
    width: 100%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--slate-800);
    color: white;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-button:hover {
    background: var(--slate-700);
}

.pricing-card.featured .pricing-button {
    background: var(--blue-500);
}

.pricing-card.featured .pricing-button:hover {
    background: var(--blue-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, rgba(30, 64, 175, 0.5), #030712, rgba(88, 28, 135, 0.5));
    padding: 8rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 8rem 2rem;
    }
}

.cta-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.gradient-blue-purple {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    color: var(--slate-400);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 3rem;
    background: var(--blue-500);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--blue-600);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 20px 40px -10px rgba(59, 130, 246, 0.4);
}

.cta-button:active {
    transform: scale(0.95);
}

.cta-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--slate-800);
    padding: 4rem 1.5rem;
    background: transparent;
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 2rem;
    }
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    background: var(--blue-500);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.375rem;
}

.footer-logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 2;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: var(--slate-400);
    max-width: 20rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-socials {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.footer-social-link {
    padding: 0.5rem;
    color: var(--slate-400);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-link:hover {
    color: white;
    transform: scale(1.1);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-section h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1280px;
    margin: 4rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate-500);
    font-size: 0.875rem;
}

@media (max-width: 640px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Mobile Menu */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button svg {
    width: 1.5rem;
    height: 1.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-close svg {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.mobile-menu-links a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--blue-500);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 12rem;
    margin-top: 1rem;
}

.mobile-menu-actions a,
.mobile-menu-actions button {
    width: 100%;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

.mobile-menu-actions .btn-ghost {
    background: transparent;
    color: var(--slate-300);
    border: 1px solid var(--slate-700);
}

.mobile-menu-actions .btn-nav-primary {
    background: var(--blue-500);
    color: white;
}

@media (max-width: 768px) {
    .navbar-content {
        padding: 1rem;
    }
    
    .section {
        padding: 4rem 1rem;
    }
    
    .hero {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-logo img {
        height: 80px !important;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .cta-buttons button {
        width: 100%;
        justify-content: center;
    }

    .beta-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .social-proof {
        font-size: 0.875rem;
    }
    
    .features-grid,
    .steps-container,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Utility Classes for Preview Components */
.browser-content-scroll *,
.preview-content-wrapper *,
.preview-inner * {
    box-sizing: border-box;
    line-height: 1.5;
}

.browser-content-scroll button,
.preview-content-wrapper button,
.preview-inner button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    background: none;
}

.browser-content-scroll svg,
.preview-content-wrapper svg,
.preview-inner svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.browser-content-scroll table,
.preview-content-wrapper table,
.preview-inner table {
    border-collapse: collapse;
    width: 100%;
}

.browser-content-scroll ul,
.preview-content-wrapper ul,
.preview-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* NOTE: All utility classes below are ONLY for InteractiveDemo preview components */
/* They should not affect the main landing page */

.min-h-\[800px\] {
    min-height: 800px;
}

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.from-slate-950 {
    --tw-gradient-from: #020617;
    --tw-gradient-to: rgb(2 6 23 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-slate-900 {
    --tw-gradient-to: rgb(15 23 42 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #0f172a, var(--tw-gradient-to);
}

.to-slate-950 {
    --tw-gradient-to: #020617;
}

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-to: rgb(248 250 252 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff;
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-violet-500 {
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-to: rgb(139 92 246 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-purple-600 {
    --tw-gradient-to: #9333ea;
}

.from-indigo-500 {
    --tw-gradient-from: #6366f1;
    --tw-gradient-to: rgb(99 102 241 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-purple-900 {
    --tw-gradient-from: #581c87;
    --tw-gradient-to: rgb(88 28 135 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-violet-800 {
    --tw-gradient-to: #5b21b6;
}

.from-orange-900 {
    --tw-gradient-from: #7c2d12;
    --tw-gradient-to: rgb(124 45 18 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-amber-800 {
    --tw-gradient-to: #92400e;
}

.from-slate-800 {
    --tw-gradient-from: #1e293b;
    --tw-gradient-to: rgb(30 41 59 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-slate-700 {
    --tw-gradient-to: #334155;
}

.from-cyan-900 {
    --tw-gradient-from: #164e63;
    --tw-gradient-to: rgb(22 78 99 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-teal-800 {
    --tw-gradient-to: #115e59;
}

.text-white {
    color: white;
}

.text-slate-900 {
    color: #0f172a;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-300 {
    color: #cbd5e1;
}

.text-neutral-950 {
    color: #0a0a0a;
}

.text-neutral-500 {
    color: #737373;
}

.text-neutral-400 {
    color: #a3a3a3;
}

.text-violet-400 {
    color: #a78bfa;
}

.text-green-400 {
    color: #4ade80;
}

.text-red-400 {
    color: #f87171;
}

.bg-white {
    background-color: white;
}

.bg-neutral-950 {
    background-color: #0a0a0a;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-700 {
    background-color: #334155;
}

.bg-slate-800 {
    background-color: #1e293b;
}

.bg-slate-800\/50 {
    background-color: rgb(30 41 59 / 0.5);
}

.bg-slate-900 {
    background-color: #0f172a;
}

.bg-slate-900\/50 {
    background-color: rgb(15 23 42 / 0.5);
}

.bg-violet-600 {
    background-color: #7c3aed;
}

.bg-violet-600\/10 {
    background-color: rgb(124 58 237 / 0.1);
}

.bg-violet-500\/10 {
    background-color: rgb(139 92 246 / 0.1);
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-indigo-600 {
    background-color: #4f46e5;
}

.bg-indigo-600\/30 {
    background-color: rgb(79 70 229 / 0.3);
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-pink-500 {
    background-color: #ec4899;
}

.bg-pink-200 {
    background-color: #fbcfe8;
}

.bg-blue-200 {
    background-color: #bfdbfe;
}

.bg-green-200 {
    background-color: #bbf7d0;
}

.bg-green-500\/20 {
    background-color: rgb(34 197 94 / 0.2);
}

.bg-amber-200 {
    background-color: #fde68a;
}

.bg-amber-500 {
    background-color: #f59e0b;
}

.bg-amber-500\/20 {
    background-color: rgb(245 158 11 / 0.2);
}

.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

.border-slate-800 {
    border-color: #1e293b;
}

.border-slate-800\/50 {
    border-color: rgb(30 41 59 / 0.5);
}

.border-slate-700\/50 {
    border-color: rgb(51 65 85 / 0.5);
}

.border-slate-100 {
    border-color: #f1f5f9;
}

.border-neutral-700 {
    border-color: #404040;
}

.border-neutral-800 {
    border-color: #262626;
}

.border-violet-500\/20 {
    border-color: rgb(139 92 246 / 0.2);
}

.border-violet-500\/50 {
    border-color: rgb(139 92 246 / 0.5);
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border {
    border-width: 1px;
}

.border-r {
    border-right-width: 1px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-t {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.rounded {
    border-radius: 0.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-4 {
    padding: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.inline-block {
    display: inline-block;
}

.flex-1 {
    flex: 1 1 0%;
}

.items-center {
    align-items: center;
}

.items-end {
    align-items: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.w-8 {
    width: 2rem;
}

.w-24 {
    width: 6rem;
}

.w-56 {
    width: 14rem;
}

.w-full {
    width: 100%;
}

.h-8 {
    height: 2rem;
}

.h-24 {
    height: 6rem;
}

.h-32 {
    height: 8rem;
}

.h-48 {
    height: 12rem;
}

.h-2 {
    height: 0.5rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.font-sans {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-light {
    font-weight: 300;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.overflow-hidden {
    overflow: hidden;
}

.cursor-pointer {
    cursor: pointer;
}

.aspect-\[4\/3\] {
    aspect-ratio: 4 / 3;
}

.backdrop-blur {
    backdrop-filter: blur(8px);
}

.hover\:bg-violet-700:hover {
    background-color: #6d28d9;
}

.hover\:bg-slate-700:hover {
    background-color: #334155;
}

.hover\:bg-neutral-900:hover {
    background-color: #171717;
}

.hover\:bg-slate-800:hover {
    background-color: #1e293b;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.text-transparent {
    color: transparent;
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-to: rgb(255 255 255 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-violet-200 {
    --tw-gradient-to: rgb(221 214 254 / 0);
    --tw-gradient-stops: var(--tw-gradient-from), #ddd6fe, var(--tw-gradient-to);
}

.to-violet-400 {
    --tw-gradient-to: #a78bfa;
}

.blue-200 {
    color: #bfdbfe;
}
