
:root {
    --bg: #0A0E1A;
    --panel: #101624;
    --ink: #E7EEF6;
    --dim: #7488A8;
    --line: rgba(231, 238, 246, 0.09);
    --acc: #7EC8FF;
}

* { box-sizing: border-box; margin: 0; padding: 0; cursor: none !important; }

html { background-color: var(--bg); }

body { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    color: var(--ink); 
    background-color: transparent; /* Rely on canvas/html bg */
    line-height: 1.8; 
    font-weight: 400;
    }

h1, h2, h3, h4, h5, h6 { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    font-weight: 700; 
    color: var(--ink); 
}

a { text-decoration: none; color: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; position: relative; z-index: 10; }

/* Buttons */
.btn { 
    display: inline-block; 
    padding: 12px 28px; 
    background-color: var(--acc); 
    color: var(--panel); 
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700; 
    border-radius: 3px; 
    text-align: center; 
    border: 1px solid var(--acc);
    transition: all 0.3s ease; 
    min-height: 48px;
    line-height: 24px; 
}
.btn:hover { background-color: transparent; color: var(--acc); }
.btn-outline { 
    background-color: transparent; 
    border: 1px solid var(--line); 
    color: var(--ink); 
}
.btn-outline:hover { 
    border-color: rgba(126,200,255,0.5); 
    color: var(--acc); 
}

/* Header */
header { 
    background: transparent;
    padding: 20px 0; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}
header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo { font-size: 24px; font-weight: 800; color: var(--ink); font-family: 'Archivo', sans-serif; letter-spacing: -0.02em; }
.header-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; justify-content: center; }
.header-nav a { 
    font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; 
    font-size: 12px; 
    letter-spacing: 0.1em; 
    color: var(--dim); 
    text-transform: uppercase; 
    transition: color 0.3s; 
}
.header-nav a:hover { color: var(--acc); }
.header-btn { padding: 8px 20px; min-height: 40px; }

/* Hero Section */
.hero { 
    text-align: center; 
    padding: 120px 20px 80px; 
}
.hero h1 { font-size: 52px; margin-bottom: 24px; line-height: 1.1; letter-spacing: -0.02em; }
.hero p { font-size: 16px; color: var(--dim); max-width: 650px; margin: 0 auto 40px; }

/* Sections */
.section-title { text-align: center; font-size: 32px; margin-bottom: 60px; font-family: 'Archivo', sans-serif; }
section { padding: 80px 0; scroll-margin-top: 80px; }

/* Reveal Animation */
.reveal {
    animation: revealAnim 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(24px);
}
@keyframes revealAnim { to { opacity: 1; transform: translateY(0); } }

/* Base Card Style */
.card-base {
    background: var(--panel); 
    padding: 40px 30px; 
    border-radius: 3px; 
    border: 1px solid var(--line); 
    transition: all 0.3s ease; 
}
.card-base:hover {
    border-color: rgba(126,200,255,0.5);
}

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { text-align: center; }
.feature-card h3 { font-size: 18px; margin-bottom: 16px; transition: color 0.3s; }
.feature-card:hover h3 { color: var(--acc); }
.feature-card p { color: var(--dim); font-size: 14px; }
.feature-tag { font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; font-size: 12px; color: var(--dim); margin-bottom: 20px; letter-spacing: 0.1em; }

/* Streaming & AI */
.stream-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.stream-card h3 { font-size: 20px; margin-bottom: 16px; transition: color 0.3s; }
.stream-card:hover h3 { color: var(--acc); }
.stream-card p { color: var(--dim); font-size: 14px; }
.stream-tag { font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; font-size: 11px; color: var(--dim); margin-bottom: 12px; letter-spacing: 0.1em; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card { text-align: center; position: relative; }
.price-card.popular { border-color: var(--acc); }
.popular-badge { 
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%); 
    background: var(--acc); color: var(--panel); padding: 4px 12px; 
    border-radius: 3px; font-size: 11px; font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; 
    letter-spacing: 0.1em; font-weight: bold; text-transform: uppercase;
}
.price-card h3 { font-size: 16px; margin-bottom: 15px; color: var(--dim); font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.price { font-size: 48px; font-weight: 800; margin-bottom: 20px; font-family: 'Archivo', sans-serif; transition: color 0.3s; }
.price-card:hover .price { color: var(--acc); }
.price span { font-size: 14px; color: var(--dim); font-weight: normal; font-family: 'Noto Sans SC', sans-serif; }
.price-card ul { list-style: none; margin-bottom: 40px; text-align: left; }
.price-card ul li { margin-bottom: 12px; color: var(--dim); font-size: 14px; display: flex; align-items: flex-start; transition: color 0.3s; }
.price-card ul li::before { content: "•"; color: var(--acc); margin-right: 10px; font-weight: bold; }
.price-card:hover ul li { color: var(--ink); }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card p { font-style: normal; color: var(--ink); margin-bottom: 20px; font-size: 14px; }
.testi-author { font-weight: 500; color: var(--dim); font-size: 12px; font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; letter-spacing: 0.1em; text-transform: uppercase; }
.testi-card:hover p { color: var(--acc); }

/* FAQ */
.faq-grid { max-width: 800px; margin: 0 auto; display: grid; gap: 15px; }
.faq-item { padding: 25px; }
.faq-item h3 { font-size: 16px; margin-bottom: 12px; transition: color 0.3s; }
.faq-item:hover h3 { color: var(--acc); }
.faq-item p { color: var(--dim); font-size: 14px; }

/* Footer */
footer { border-top: 1px solid var(--line); padding: 40px 0; text-align: center; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-bottom: 20px; }
.footer-links a { font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--dim); text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--acc); }
.footer-copy { font-size: 11px; font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; }

/* Mobile Responsive */
@media (max-width: 768px) {
    header .container { flex-direction: column; gap: 15px; }
    .hero h1 { font-size: 36px; }
    .features-grid, .stream-grid, .pricing-grid, .testi-grid, .footer-links { 
        grid-template-columns: 1fr; gap: 15px; 
    }
    .btn { width: 100%; display: block; box-sizing: border-box; } 
    .corner { display: none !important; }
}

/* Custom Cursor */
#cursor-ring {
    position: fixed; top: 0; left: 0; width: 32px; height: 32px;
    border: 1px solid var(--acc); border-radius: 50%;
    transform: translate(-50%, -50%); pointer-events: none; z-index: 99999;
    transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}
.cursor-hover {
    width: 12px !important; height: 12px !important;
    background-color: var(--acc);
    border-color: transparent !important;
}

/* Generic content page for auxiliary pages */
.page-content { scroll-margin-top: 80px;
    background: var(--panel);
    padding: 60px 30px; 
    max-width: 800px; 
    margin: 40px auto; 
    border-radius: 3px; 
    border: 1px solid var(--line);
}
.page-content h1, .page-content h2 { margin-bottom: 20px; }
.page-content p, .page-content ul { color: var(--dim); margin-bottom: 15px; }

/* Accessibility & Details Summary */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--acc); color: var(--panel); padding: 8px 16px; z-index: 1000; transition: top 0.2s; border-radius: 0 0 3px 0; font-family: monospace; font-weight: bold; }
.skip-link:focus { top: 0; }
*:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
details.card-base > summary { list-style: none; outline: none; }
details.card-base > summary::-webkit-details-marker { display: none; }
details.card-base[open] summary { margin-bottom: 15px; border-bottom: 1px solid var(--line); padding-bottom: 15px; }
