@charset "UTF-8";

:root {
    --bg-color: #050511;
    --bg-secondary: #0a0a1f;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0b0;
    --accent-primary: #00f0ff;
    --accent-glow: rgba(0, 240, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #00f0ff 0%, #0066ff 100%);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-spacing: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Effect */
.glow-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 80, 255, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-spacing {
    padding: var(--section-spacing) 0;
}

.center-text {
    text-align: center;
}

.center {
    margin: 0 auto;
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: backdrop-filter 0.3s;
}

.navbar.glass {
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 17, 0.7);
    border-bottom: 1px solid var(--glass-border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo .highlight {
    color: var(--accent-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.btn-sm:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Glass Components */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 240, 255, 0.1);
    color: var(--accent-primary);
    border-radius: 50px;
    border: 1px solid rgba(0, 240, 255, 0.2);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.hero-sub {
    font-size: 1.25rem;
    margin: 2rem 0;
    max-width: 600px;
}

.hero-metrics {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    justify-content: space-around;
}

.metric {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.metric i {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .hero-metrics {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card i {
    color: var(--accent-primary);
    margin-bottom: 1rem;
    width: 32px;
    height: 32px;
}

.no-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.no-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #fff;
}

.no-item i {
    color: #00ff88;
}

/* vivid green for checks */

/* Trust Section */
.dark-section {
    background: rgba(0, 0, 0, 0.3);
}

.trust-list li {
    list-style: none;
    margin-bottom: 2rem;
}

.trust-list h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Terminal Effect */
.terminal-window {
    background: #0f0f1a;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 0;
    font-family: 'Courier New', monospace;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.terminal-header {
    background: #1a1a2e;
    padding: 10px 15px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.terminal-body {
    padding: 15px;
    font-size: 0.9rem;
}

.cmd {
    color: #00f0ff;
    margin-bottom: 5px;
}

.res {
    color: #aaa;
    margin-bottom: 15px;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

/* Check List */
.check-list li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #fff;
}

.check-list i {
    color: var(--accent-primary);
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* Audience List */
.audience-list li {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border-left: 3px solid var(--accent-primary);
}

.audience-list.negative li {
    border-left-color: #ff3366;
}

.audience-list i {
    color: var(--accent-primary);
}

.audience-list.negative i {
    color: #ff3366;
}

/* Venn Diagram approximation */
.venn-diagram {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    height: 200px;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 240, 255, 0.05);
}

.circle:nth-child(1) {
    left: 50%;
    transform: translateX(-100%);
}

.circle:nth-child(2) {
    right: 50%;
    transform: translateX(100%);
}

/* Adjusted for visual overlap */
.circle:nth-child(3) {
    top: 70px;
}

/* Bottom circle */

/* For simplicity in CSS only, I'll align them side by side with overlap or stack them */
@media (min-width: 600px) {
    .circle:nth-child(1) {
        left: calc(50% - 130px);
        transform: none;
        top: 0;
    }

    .circle:nth-child(2) {
        left: calc(50% + 30px);
        transform: none;
        top: 0;
    }

    .circle:nth-child(3) {
        top: 80px;
        left: calc(50% - 100px);
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(5, 5, 17, 0.8) 0%, rgba(10, 10, 40, 0.8) 100%);
    border: 1px solid rgba(0, 240, 255, 0.3);
}

.inline-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.inline-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.inline-list li::before {
    content: "✓";
    color: var(--accent-primary);
}

/* Animations */
.fade-in,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.fade-in.active {
    opacity: 1;
}

.reveal-up {
    transform: translateY(30px);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    transform: scale(0.95);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}

/* Footer Styles */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-info {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-info h4 {
    color: var(--accent-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-info p,
.footer-info a {
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.footer-info a:hover {
    color: #fff;
}

.copyright p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
}