/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-brand .logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #69e0f8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #69e0f8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 40px;
}

.main-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.hero-logo-image {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(105, 224, 248, 0.3));
}

.tagline {
    font-size: 28px;
    color: #69e0f8;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #69e0f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.cta-button {
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, #69e0f8 0%, #4dd6f0 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(105, 224, 248, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(105, 224, 248, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    border-color: #69e0f8;
    color: #69e0f8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(105, 224, 248, 0.2);
}

.hero-note {
    font-size: 0.9rem;
    color: #888888;
    font-style: italic;
    margin-top: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(105, 224, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(105, 224, 248, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #69e0f8;
}


/* Failure Section */
.failure-section {
    padding: 120px 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%),
        radial-gradient(circle at 30% 70%, rgba(105, 224, 248, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(105, 224, 248, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.failure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="%2369e0f8" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    animation: gridPulse 6s ease-in-out infinite alternate;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

.failure-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.failure-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 60px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.highlight {
    background: linear-gradient(135deg, #69e0f8 0%, #7ee6fa 50%, #94ecfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.failure-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.scenario-card {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(145deg, rgba(105, 224, 248, 0.08) 0%, rgba(105, 224, 248, 0.03) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(105, 224, 248, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #69e0f8 20%, 
        #7ee6fa 50%, 
        #69e0f8 80%, 
        transparent 100%);
}

.scenario-card:hover {
    transform: translateY(-8px);
    border-color: rgba(105, 224, 248, 0.5);
    box-shadow: 
        0 20px 40px rgba(105, 224, 248, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.scenario-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #69e0f8 0%, #4dd6f0 100%);
    box-shadow: 0 0 20px rgba(105, 224, 248, 0.4);
    padding: 20px;
}

.scenario-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.scenario-icon.signal-lost {
    background-image: url('no-wifi.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
}

.scenario-icon.infrastructure-down {
    background-image: url('signal.png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
}

.scenario-icon.mission-failure {
    background-image: url('warning (1).png');
    background-size: 40px 40px;
    background-repeat: no-repeat;
    background-position: center;
}

.scenario-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scenario-card p {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 1rem;
}

.failure-visual-new {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.disruption-wave {
    width: 80px;
    height: 80px;
    border: 3px solid #69e0f8;
    border-radius: 50%;
    position: relative;
    animation: disrupt 2s ease-in-out infinite;
}

.disruption-wave:nth-child(1) {
    animation-delay: 0s;
    border-color: #69e0f8;
}

.disruption-wave:nth-child(2) {
    animation-delay: 0.3s;
    border-color: #7ee6fa;
}

.disruption-wave:nth-child(3) {
    animation-delay: 0.6s;
    border-color: #94ecfc;
}

@keyframes disrupt {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

/* About Section */
.about-section {
    padding: 150px 0;
    background: 
        linear-gradient(135deg, #000000 0%, #0a0a0a 25%, #111111 50%, #0a0a0a 75%, #000000 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 20%, rgba(105, 224, 248, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(105, 224, 248, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(105, 224, 248, 0.05) 0%, transparent 60%);
    animation: pulse 8s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.about-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(105, 224, 248, 0.03) 90deg, 
            transparent 180deg, 
            rgba(105, 224, 248, 0.03) 270deg, 
            transparent 360deg);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-container {
    position: relative;
}

.about-text-container::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        #69e0f8 20%, 
        #7ee6fa 50%, 
        #69e0f8 80%, 
        transparent 100%);
    border-radius: 2px;
}

.about-text {
    font-size: 1.2rem;
    color: #e8e8e8;
    margin-bottom: 25px;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.about-text:first-of-type {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 35px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text strong {
    background: linear-gradient(135deg, #69e0f8 0%, #7ee6fa 50%, #94ecfc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    text-shadow: none;
}

.about-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #69e0f8 0%, transparent 100%);
    opacity: 0.5;
}

.principles-container {
    position: relative;
}

.principles {
    background: 
        linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        linear-gradient(145deg, rgba(105, 224, 248, 0.05) 0%, rgba(105, 224, 248, 0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.principles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #69e0f8 20%, 
        #7ee6fa 50%, 
        #69e0f8 80%, 
        transparent 100%);
}

.principles-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    letter-spacing: -0.5px;
}

.principles-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #69e0f8 0%, #7ee6fa 50%, #94ecfc 100%);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(105, 224, 248, 0.5);
}

.principles-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 20px;
}

.principles-list li {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(105, 224, 248, 0.2);
    border-radius: 16px;
    padding: 30px 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.principles-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(105, 224, 248, 0.1) 0%, rgba(105, 224, 248, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.principles-list li:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(105, 224, 248, 0.6);
    box-shadow: 
        0 20px 40px rgba(105, 224, 248, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.principles-list li:hover::before {
    opacity: 1;
}

.principles-list li strong {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.principles-list li strong::before {
    content: '';
    width: 12px;
    height: 12px;
    background: linear-gradient(45deg, #69e0f8 0%, #7ee6fa 100%);
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 
        0 0 10px rgba(105, 224, 248, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.principles-list li p {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 2;
    letter-spacing: 0.2px;
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.use-cases-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(105, 224, 248, 0.2);
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(105, 224, 248, 0.5);
    box-shadow: 0 20px 40px rgba(105, 224, 248, 0.1);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #69e0f8 0%, #4dd6f0 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-case-icon::before {
    content: '';
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
}

.use-case-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.use-case-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #111111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding-top: 40px;
}

.contact-info p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(105, 224, 248, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #69e0f8;
    box-shadow: 0 0 10px rgba(105, 224, 248, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #69e0f8 0%, #4dd6f0 100%);
    color: #ffffff;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(105, 224, 248, 0.3);
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-contact p {
    color: #cccccc;
    margin-bottom: 10px;
}

.pgp-note {
    font-size: 0.8rem;
    color: #888888;
    font-style: italic;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-logo-image {
        height: 80px;
    }
    
    .tagline {
        font-size: 22px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 250px;
        text-align: center;
    }
    
    
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .failure-title {
        font-size: 2.2rem;
    }
    
    .failure-scenarios {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .scenario-card {
        padding: 30px 25px;
    }
    
    .failure-visual-new {
        height: 80px;
    }
    
    .disruption-wave {
        width: 60px;
        height: 60px;
        border-width: 2px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-text-container::before {
        display: none;
    }
    
    .principles {
        padding: 40px 25px;
    }
    
    .principles-title {
        font-size: 1.8rem;
    }
    
    .about-text {
        font-size: 1.1rem;
    }
    
    .about-text:first-of-type {
        font-size: 1.4rem;
    }
    
    .principles-list li {
        padding: 25px 20px;
    }
    
    .principles-list li strong {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Guardian7 Text Styling */
.guardian7-text {
    color: #ffffff;
}

.guardian7-text .seven {
    color: #69e0f8;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111111;
}

::-webkit-scrollbar-thumb {
    background: #69e0f8;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4dd6f0;
}
