:root {
    color-scheme: light dark;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.08), transparent 25%),
        radial-gradient(circle at 80% 0%, rgba(236, 72, 153, 0.08), transparent 30%),
        #0b1220;
}

.layout-shell {
    position: relative;
    z-index: 0;
}

.logo-dark,
.logo-light {
    display: block;
}

.logo-light {
    display: none;
}

body.light-theme .logo-light {
    display: block;
}

body.light-theme .logo-dark {
    display: none;
}

.floating-card {
    animation: float 8s ease-in-out infinite;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(147, 197, 253, 0.4);
    animation: pulse-ring 3.5s linear infinite;
}

.glass-panel {
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 80px rgba(15, 23, 42, 0.45);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.price-emphasis {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.18), rgba(56, 189, 248, 0.18));
}

section p,
section h3,
section h4,
section span,
section li {
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

body.light-theme {
    background-color: #f8fafc;
    color: #0f172a;
    color-scheme: light;
}

body.light-theme .glass-panel {
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12) !important;
}

body.light-theme :is(.text-white, .text-white\/90, .text-white\/80, .text-white\/70, .text-white\/60, .text-white\/50, .text-white\/40, .text-white\/30, .text-slate-100, .text-slate-200) {
    color: #0f172a !important;
}

body.light-theme .text-slate-300 {
    color: #334155 !important;
}

body.light-theme :is(.text-slate-400, .text-slate-500) {
    color: #475569 !important;
}

body.light-theme :is(.text-slate-600, .text-slate-700) {
    color: #1e293b !important;
}

body.light-theme :is(.bg-slate-950, .bg-slate-900\/80, .bg-slate-900\/70, .bg-slate-900\/60, .bg-slate-950\/80) {
    background-color: rgba(248, 250, 252, 0.97) !important;
}

body.light-theme :is(.border-white\/10, .border-white\/15) {
    border-color: rgba(15, 23, 42, 0.12) !important;
}

body.light-theme :is(.bg-white\/5, .bg-white\/10, .bg-black\/40) {
    background-color: rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .shadow-xl {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12) !important;
}

body.light-theme .shadow-lg {
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.1) !important;
}

body.light-theme .bg-white\/90 {
    background-color: rgba(15, 23, 42, 0.05) !important;
    color: #0f172a !important;
}

body.light-theme .bg-white\/90:hover {
    background-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme .price-emphasis {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(59, 130, 246, 0.2));
    color: #0f172a;
}

body.light-theme .pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 249, 0.95));
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12) !important;
}

body.light-theme .pricing-card :is(.text-xl, .text-3xl, .text-slate-200, .text-slate-100) {
    color: #0f172a !important;
}

body.light-theme .pricing-card .text-emerald-100 {
    color: #047857 !important;
}

body.light-theme .pricing-card span.bg-white\/10 {
    background-color: rgba(15, 23, 42, 0.06) !important;
    color: #0f172a !important;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

body.light-theme .pricing-card ul li span {
    color: #047857 !important;
}

body.light-theme #pricing p.text-sm {
    color: #1f2937 !important;
}

body.light-theme #faqs {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12) !important;
}

body.light-theme #faqs details {
    background-color: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08) !important;
}

body.light-theme #faqs summary span:first-child {
    color: #0f172a !important;
}

body.light-theme #faqs p.text-slate-300 {
    color: #1f2937 !important;
}

body.light-theme #support {
    gap: 1.25rem;
}

body.light-theme #support .glass-panel {
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.14) !important;
}

body.light-theme #support .glass-panel:first-child {
    background: linear-gradient(140deg, rgba(52, 211, 153, 0.18), rgba(59, 130, 246, 0.15), #ffffff) !important;
    border-color: rgba(16, 185, 129, 0.35) !important;
}

body.light-theme #support .glass-panel:last-child {
    background: linear-gradient(140deg, rgba(251, 191, 36, 0.2), rgba(236, 72, 153, 0.18), #ffffff) !important;
    border-color: rgba(244, 114, 182, 0.35) !important;
}

body.light-theme #support ul li {
    color: #0f172a !important;
}

body.light-theme #support ul li::marker,
body.light-theme #support ul li span,
body.light-theme #support p .text-white {
    color: #047857 !important;
}

body.light-theme #support p.text-slate-100 {
    color: #1f2937 !important;
}

body.light-theme footer {
    background: linear-gradient(120deg, #f8fafc, #e2e8f0);
    border-color: rgba(15, 23, 42, 0.08) !important;
    color: #0f172a;
}

body.light-theme footer :is(p, a, span, div) {
    color: #0f172a !important;
}

body.light-theme footer .text-slate-400 {
    color: #475569 !important;
}

body.light-theme footer .border-white\/10 {
    border-color: rgba(15, 23, 42, 0.1) !important;
}

body.light-theme footer .bg-slate-900\/60 {
    background-color: rgba(15, 23, 42, 0.05) !important;
}

body.light-theme .feature-card .h-12 {
    background-color: rgba(15, 23, 42, 0.06) !important;
}

body.light-theme .text-emerald-300,
body.light-theme .text-cyan-300,
body.light-theme .text-rose-300 {
    color: #0f766e !important;
}

@keyframes float {
    0% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-18px) translateX(6px);
    }

    100% {
        transform: translateY(0px) translateX(0px);
    }
}

@keyframes pulse-ring {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    70% {
        opacity: 0;
        transform: scale(1.35);
    }

    100% {
        opacity: 0;
    }
}
