/* Deep Obsidian Theme */
:root {
    --bg-body: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(5, 5, 5, 0.7);
    
    --accent-primary: #f59e0b; /* Norton Yellow-ish Gold */
    --accent-secondary: #ffffff;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    
    --border-light: rgba(255, 255, 255, 0.1);
    --glow: 0 0 20px rgba(245, 158, 11, 0.3);
    
    --font-main: 'Inter', sans-serif;
    --container-width: 1200px;
}

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

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
}

/* Utility */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-accent {
    color: var(--accent-primary);
}

a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--accent-primary);
    color: #000;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
    background: #ffffff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: none;
}

/* Forms */
input, textarea, select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    color: var(--text-main);
    border-radius: 8px;
    font-family: var(--font-main);
    margin-bottom: 20px;
    transition: 0.3s;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Disclaimer Strip */
.disclaimer-top {
    background: #111;
    color: #666;
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(12px);
    background: var(--bg-glass);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span { color: var(--accent-primary); }

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.nav-links a:hover, .nav-links a.active { color: var(--text-main); }

.nav-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-pill {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: 0.3s;
}

.call-pill:hover {
    background: var(--accent-primary);
    color: #000;
}

/* Hero */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 90vh;
}

.hero-content {
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-graphic {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 1;
}

.shield-anim {
    width: 400px;
    height: 480px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(245, 158, 11, 0.1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: pulse 4s infinite;
}

.shield-anim::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
}

/* Products Scrolling */
.products-strip {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
    white-space: nowrap;
}

.products-track {
    display: inline-flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
}

.product-item {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.7;
}

.product-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 100px 0; }
.section-header { margin-bottom: 60px; text-align: left; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    padding: 40px;
    border-radius: 16px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #fff;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-primary);
}

/* Support CTA */
.cta-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-light);
    padding: 80px 0 40px;
    background: #000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo { font-size: 1.5rem; font-weight: 800; color: #fff; margin-bottom: 20px; display: block; }
.footer-col h4 { color: #fff; margin-bottom: 24px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent-primary); }

.disclaimer-text {
    border-top: 1px solid #222;
    padding-top: 30px;
    color: #555;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero { padding-top: 140px; }
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
    .nav-cta { display: block; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .cta-box { padding: 40px 20px; }
}
