/* Oscar Six Security - Main Stylesheet
   Matching Radar site aesthetic:
   - Dark background: #0a0a0a
   - Green accent: #00f260
   - Secondary blue: #0575e6
   - Font: Inter
*/

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

:root {
    --color-bg: #0a0a0a;
    --color-bg-light: #111111;
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-dim: #888888;
    --color-accent: #00f260;
    --color-accent-blue: #0575e6;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Backdrop Logo */
.logo-backdrop {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 800px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(100%);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    padding-right: 4rem;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.logo {
    height: 32px;
    width: auto;
}

.brand-name {
    color: var(--color-text);
}

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

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-cta {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-text);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    margin-top: 60px;
    background: radial-gradient(circle at 50% 50%, rgba(26, 26, 26, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: relative;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    background: linear-gradient(90deg, #00f260 0%, #0575e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: var(--color-accent);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 96, 0.4);
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 242, 96, 0.6);
}

.cta-button-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-dark {
    background: rgba(17, 17, 17, 0.85);
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-dim);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-card {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.feature-card p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.solution-subtitle {
    display: block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solution-pitch {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.price-box {
    background: rgba(0, 242, 96, 0.1);
    border: 1px solid rgba(0, 242, 96, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    text-align: center;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
}

.price-note {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.badge-box {
    background: rgba(0, 242, 96, 0.1);
    border-radius: 10px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-grid .feature-card {
    text-align: center;
}

.audience-grid .feature-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* Mission Content */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: rgba(0, 242, 96, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    text-align: left;
}

.highlight-box p {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}

/* About Content */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-content strong {
    color: var(--color-text);
}

.founders-box {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
}

.founders-box h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.founders-box p {
    margin: 0;
}

/* Contact Section */
.contact-section {
    border-top: 1px solid var(--color-border);
}

.contact-section h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.email-link:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: var(--color-bg-light);
    border-top: 1px solid var(--color-border);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-brand strong {
    font-size: 1.125rem;
}

.footer-brand span {
    color: var(--color-text-dim);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        padding-right: 1rem;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 6rem 1rem 3rem;
        margin-top: 65px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 3rem 1rem;
    }

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

    .solutions-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.1rem;
    }

    .logo {
        height: 28px;
    }

    .highlight-box {
        padding: 1rem;
    }

    .highlight-box p {
        font-size: 1rem;
    }
}
