/* Fonts */
@font-face {
    font-family: 'Mona Sans';
    src: url('/static/fonts/MonaSans[wdth,wght].ttf') format('truetype');
    font-weight: 200 900;
    font-stretch: 75% 125%;
}

@font-face {
    font-family: 'Mona Sans';
    src: url('/static/fonts/MonaSans-Italic[wdth,wght].ttf') format('truetype');
    font-weight: 200 900;
    font-stretch: 75% 125%;
    font-style: italic;
}

body,
.font-sans,
input,
button,
textarea,
select {
    font-family: 'Mona Sans', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
}

/* NON-CRITICAL STYLES (Loaded asynchronously/deferred for performance) */

/* UTILITIES EXTRACTED FROM INLINE STYLES */
.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

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

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

.mb-10 {
    margin-bottom: 2.5rem;
}

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

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

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.text-white {
    color: #ffffff;
}

.text-gray-300 {
    color: #d4d4d4;
}

.text-gray-400 {
    color: #b0b0b0;
}

.text-gray-500 {
    color: #888888;
}

.text-gray-600 {
    color: #666666;
}

.text-brand {
    color: #c8ff00;
}

.text-red {
    color: red;
}

.text-yellow {
    color: #fce300;
}

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

.font-extrabold {
    font-weight: 800;
}

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

.font-normal {
    font-weight: 400;
}

.italic {
    font-style: italic;
}

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

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

.text-md {
    font-size: 1rem;
}

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

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

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

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

.leading-loose {
    line-height: 1.7;
}

/* LIST COMPONENT */
.list-contrast {
    color: #b0b0b0;
}

.list-contrast li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.list-contrast li span:first-child {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.list-contrast strong,
.list-contrast b {
    color: #ffffff;
    font-weight: 700;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

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

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

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

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

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.mr-3 {
    margin-right: 0.75rem;
}

.border-l-brand {
    border-left: 3px solid #c8ff00;
}

.border-l-gray {
    border-left: 2px solid #333;
}

.bg-gradient-brand-fade {
    background: linear-gradient(90deg, rgba(200, 255, 0, 0.05) 0%, transparent 100%);
}

.bg-glass {
    background: rgba(200, 255, 0, 0.03);
}

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

.p-6 {
    padding: 1.5rem;
}

.pl-4 {
    padding-left: 1rem;
}

/* SECTIONS */
.section-features .feature-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(200, 255, 0, 0.03);
    border-radius: 0.75rem;
}

/* CARDS */
.card-grid {
    display: grid;
    gap: 1rem;
}

.card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: #000000;
    border: 1px solid #333;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    border-color: #444;
}

.card>.card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(200, 255, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #c8ff00;
}

/* PRICING */
.pricing-card {
    padding: 1.5rem;
    border: 1px solid #333;
    border-radius: 1rem;
    background: #000;
}

.pricing-card-annual {
    padding: 1.5rem;
    border: 2px solid #c8ff00;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(200, 255, 0, 0.08) 0%, rgba(0, 0, 0, 1) 100%);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #c8ff00;
    color: #000;
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-weight: 800;
    border-radius: 99px;
}

.pricing-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: #d4d4d4;
}

.check-list svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    color: #c8ff00;
    flex-shrink: 0;
}

/* FAQ */
details {
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #000000;
    transition: all 0.3s ease;
}

details[open] {
    border-color: #333;
    background: #050505;
}

summary {
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    list-style: none;
    position: relative;
    padding-right: 20px;
}

summary::after {
    content: '+';
    position: absolute;
    right: 0;
    color: #c8ff00;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

details[open] summary::after {
    content: '-';
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    margin-bottom: 0.75rem;
    color: #c8ff00;
}

/* FOOTER */
.footer {
    background: #000000;
    margin-top: auto;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 2rem 2rem;
    border-top: 1px solid #1a1a1a;
}

.icon {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.social-link {
    color: #888;
    transition: color 0.2s;
}

.social-link svg {
    fill: currentColor;
}

.social-link:hover {
    color: #c8ff00;
}