/* Base Variables and Reset */
:root {
    --bg-color: #030305;
    /* Deeper cyberpunk black */
    --text-main: #F0F0F5;
    --text-muted: #8E8EA0;
    --accent: #FF6B00;
    /* Solar flare orange */
    --accent-hover: #FF8533;
    --accent-glow: rgba(255, 107, 0, 0.4);
    --highlight-cyan: #00F0FF;
    /* Cyberpunk Cyan */
    --highlight-cyan-glow: rgba(0, 240, 255, 0.4);
    --surface: rgba(15, 15, 20, 0.7);
    --surface-border: rgba(0, 240, 255, 0.15);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4,
.title,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.highlight-cyan {
    color: var(--highlight-cyan);
    text-shadow: 0 0 20px var(--highlight-cyan-glow);
}

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

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

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

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

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

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

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

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

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

.op-5 {
    opacity: 0.5;
}

.op-7 {
    opacity: 0.7;
}

.d-flex {
    display: flex;
}

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

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.title-sm {
    font-size: 2.5rem;
}

.relative {
    position: relative;
    z-index: 10;
}

/* Space Background Effects */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 40px 70px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(1px 1px at 50px 160px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: 0;
    animation: twinkle 5s infinite alternate;
}

.fixed-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40, 15, 100, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
}

.orange-glow {
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -100px;
    left: -100px;
    top: auto;
    right: auto;
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 0.4;
    }
}

/* Glassmorphism Components */
.glass-section {
    position: relative;
    z-index: 10;
}

.glass-card {
    background: var(--surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    /* Fixed thinner height */
    z-index: 100;
    background: rgba(5, 5, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--surface-border);
    display: flex;
    align-items: center;
}

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

.logo {
    font-size: 2.2rem;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    height: 100%;
}

.brand-logo {
    height: 120px;
    /* Kept large as requested */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-main);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.w-100 {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}

.glow-button {
    box-shadow: 0 0 20px var(--accent-glow);
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(255, 107, 0, 0.6);
}

.glow-button-cyan {
    background-color: transparent;
    border: 1px solid var(--highlight-cyan);
    color: var(--highlight-cyan);
    box-shadow: 0 0 15px var(--highlight-cyan-glow);
}

.glow-button-cyan:hover {
    background-color: var(--highlight-cyan-glow);
    color: #fff;
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    transform: translateY(-2px);
}

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

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-outline:hover {
    background: var(--accent-glow);
    color: #fff;
}

.btn-amazon {
    background: linear-gradient(to right, #FF9900, #FFB84D);
    color: #111;
    font-weight: 800;
}

.btn-amazon:hover {
    background: linear-gradient(to right, #FFB84D, #FF9900);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 153, 0, 0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    /* Adjusted back for thinner navbar */
    background: url('assets/images/hero.png') no-repeat center center / cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 5, 10, 0.3) 0%, rgba(5, 5, 10, 0.9) 100%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-accent {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: #fff;
}

.badge-neon {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--highlight-cyan);
    color: var(--highlight-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-group {
    margin-top: 2rem;
}

/* Eclipse Animation inside Hero */
.eclipse-animation {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #fff 0%, #FFD700 40%, #FF8C00 80%, rgba(255, 0, 0, 0) 100%);
    border-radius: 50%;
    box-shadow: 0 0 60px 20px rgba(255, 140, 0, 0.6);
}

.moon {
    position: absolute;
    top: 50%;
    left: 10%;
    /* Starts covering */
    transform: translate(-50%, -50%);
    width: 245px;
    height: 245px;
    background-color: var(--bg-color);
    border-radius: 50%;
    box-shadow: inset -10px -10px 20px rgba(255, 255, 255, 0.05);
    animation: eclipse 15s infinite alternate ease-in-out;
}

@keyframes eclipse {
    0% {
        left: 10%;
    }

    50% {
        left: 50%;
    }

    /* Total eclipse */
    100% {
        left: 90%;
    }
}

/* Info Section */
.info-section {
    padding: 6rem 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Danger / Education Section */
.danger-section {
    padding: 8rem 0;
    background: radial-gradient(circle at left, rgba(255, 51, 102, 0.15) 0%, rgba(0, 0, 0, 0) 60%);
}

.amazon-banner {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(25, 25, 35, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
    border-left: 4px solid #FF9900;
}

.amazon-content {
    flex: 1;
}

.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check {
    color: #FF9900;
    font-weight: bold;
}

.amazon-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.amazon-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* B2B Promo Section */
.b2b-section {
    padding: 8rem 0;
    background: radial-gradient(circle at center, rgba(40, 20, 80, 0.3) 0%, var(--bg-color) 70%);
}

.text-container {
    max-width: 800px;
}

.promo-box {
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid var(--accent-glow);
    border-radius: 16px;
    max-width: 600px;
}

.promo-box h3 {
    margin: 0;
    margin-top: 1rem;
    font-size: 1.8rem;
}

/* Forms and Inputs */
.form-group,
.input-group {
    margin-bottom: 2rem;
    /* Increased spacing between fields */
    text-align: left;
}

.form-group label,
.input-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.1rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    /* Softer, more rounded corners */
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.input-group input:focus {
    outline: none;
    border-color: var(--highlight-cyan);
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px var(--highlight-cyan-glow);
}

.hint {
    display: block;
    font-size: 0.8rem;
}

/* B2B Page specific */
.page-padding {
    padding: 100px 0 60px 0;
    /* Adjusted back */
    min-height: calc(100vh - 200px);
}

.b2b-panels {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-panel {
    padding: 2.5rem;
}

.form-panel-accent {
    border: 1px solid var(--accent-glow);
    box-shadow: inset 0 0 20px rgba(255, 107, 0, 0.05);
}

.alert {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
}

.alert-success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.alert-accent {
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid var(--accent);
    color: #fff;
}

.d-none {
    display: none;
}

/* Footer */
.footer {
    border-top: 1px solid var(--surface-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    background: rgba(5, 5, 10, 0.5);
    position: relative;
    z-index: 10;
}

.footer-content {
    display: flex !important;
    justify-content: space-around !important;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 {
        font-size: 2.8rem;
    }

    .hero-visual {
        display: none;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .danger-section .grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .amazon-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .b2b-panels {
        grid-template-columns: 1fr;
    }

    .footer-content {
        justify-content: space-between;
        padding: 0 2rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer-text {
        margin: 1rem auto;
    }
}