:root {
    --snap-orange: #FF6B35;
    --snap-yellow: #F7B32B;
    --snap-blue: #00E5FF;
    --snap-purple: #D500F9;
    --snap-dark: #020205;
    --snap-white: #FDFFFC;
    --snap-gray: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    cursor: none;
    scroll-behavior: smooth;
}

body {
    background-color: var(--snap-dark);
    color: var(--snap-white);
    overflow-x: hidden;
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Scanline Effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 9999;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 229, 255, 0.05) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: fixed;
    bottom: 100%;
    animation: scanline 8s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

/* Custom Cursor */
#custom-cursor {
    width: 8px;
    height: 8px;
    background: var(--snap-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 2147483647;
    box-shadow: 0 0 20px var(--snap-blue), 0 0 40px var(--snap-blue);
}

#cursor-blur {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    position: fixed;
    pointer-events: none;
    z-index: 2147483646;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

/* Auras */
.aura {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.3;
}
.aura-1 { width: 600px; height: 600px; background: var(--snap-orange); top: -200px; left: -200px; }
.aura-2 { width: 700px; height: 700px; background: var(--snap-blue); bottom: -200px; right: -200px; }
.aura-3 { width: 400px; height: 400px; background: var(--snap-purple); top: 30%; right: 10%; }

/* Navigation */
nav {
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(2, 2, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
    font-family: 'Syncopate', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -1px;
    background: linear-gradient(to right, var(--snap-white), var(--snap-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.v-tag {
    font-size: 0.6rem;
    vertical-align: middle;
    background: rgba(0, 229, 255, 0.1);
    color: var(--snap-blue);
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
    font-family: 'Space Mono', monospace;
}

.nav-links a {
    color: var(--snap-white);
    text-decoration: none;
    margin-left: 35px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: 0.3s;
    letter-spacing: 2px;
}

.btn-glow {
    padding: 10px 25px;
    border: 1px solid var(--snap-blue);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
}

/* Header */
header {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.top-line {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--snap-blue);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: 8rem;
    font-weight: 700;
    letter-spacing: -8px;
    line-height: 0.85;
    background: linear-gradient(to bottom, #fff 0%, var(--snap-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.subtitle {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 12px;
    margin-bottom: 40px;
    opacity: 0.6;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(253, 255, 252, 0.6);
    max-width: 700px;
    margin-bottom: 50px;
}

.highlight {
    color: var(--snap-blue);
    font-weight: 700;
}

.btn {
    padding: 18px 45px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.4s;
    display: inline-block;
    margin-right: 20px;
    letter-spacing: 2px;
}

.btn-primary {
    background: var(--snap-blue);
    color: var(--snap-dark);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--snap-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Marquee */
.marquee {
    background: rgba(0, 229, 255, 0.05);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    padding: 20px 0;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: var(--snap-blue);
    opacity: 0.8;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Sections */
section {
    padding: 120px 0;
}

.section-title h2 {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.mono-text {
    font-family: 'Space Mono', monospace;
    color: var(--snap-blue);
    letter-spacing: 5px;
    font-size: 0.8rem;
    margin-bottom: 60px;
}

/* Vision Cards */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 4px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 0;
    background: var(--snap-blue);
    transition: 0.4s;
}

.vision-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.vision-card:hover::before {
    height: 100%;
}

.card-header {
    font-family: 'Space Mono', monospace;
    color: var(--snap-blue);
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.5;
}

.vision-card h3 {
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* About Section */
.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar-frame {
    width: 300px;
    height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-content {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--snap-gray), #000);
    border: 1px solid var(--snap-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syncopate', sans-serif;
    font-size: 4rem;
    z-index: 2;
}

.avatar-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(0, 229, 255, 0.3);
    animation: rotate 20s linear infinite;
}

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

.architect-tag {
    margin-top: 30px;
    text-align: center;
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 4px;
}

.architect-tag span {
    font-size: 0.7rem;
    color: var(--snap-blue);
    font-family: 'Space Mono', monospace;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.tech-box {
    text-align: center;
    padding: 40px;
}

.tech-box i {
    color: var(--snap-blue);
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.tech-box h4 {
    font-family: 'Space Mono', monospace;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

footer {
    padding: 100px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 50px;
}

.footer-grid h5 {
    font-family: 'Space Mono', monospace;
    color: var(--snap-blue);
    margin-bottom: 20px;
}

.system-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--snap-blue);
    background: rgba(0, 229, 255, 0.05);
    padding: 10px 20px;
    border-radius: 4px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--snap-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--snap-blue);
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.footer-grid p {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-bottom: 5px;
}

@media (max-width: 1024px) {
    h1 { font-size: 5rem; letter-spacing: -4px; }
    .about-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .tech-grid { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    * { cursor: auto !important; }
    #custom-cursor, #cursor-blur { display: none !important; }
    
    .container { padding: 0 25px; }
    
    h1 { 
        font-size: 13vw; 
        letter-spacing: -1.5vw; 
        line-height: 1;
        word-break: keep-all;
    }
    .subtitle { font-size: 0.8rem; letter-spacing: 3px; }
    .hero-subtitle { font-size: 1rem; }
    
    .section-title h2 { font-size: 2.2rem; }
    
    .btn { width: 100%; margin: 10px 0; text-align: center; }
    .hero-btns { display: flex; flex-direction: column; }
    
    .avatar-frame { width: 200px; height: 200px; }
    .avatar-content { width: 150px; height: 150px; font-size: 3rem; }
    
    .nav-links { display: none; }
    .logo { font-size: 1.1rem; }
    
    .vision-card { padding: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .system-status { font-size: 0.6rem; overflow-x: auto; white-space: nowrap; }
}

/* Protocol Overlay */
.protocol-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(2, 2, 5, 0.98);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto; /* Mobilde kaydırma için */
}

.terminal-container {
    width: 100%;
    max-width: 800px;
    font-family: 'Space Mono', monospace;
    padding: 60px 0; /* İçerik taşmasını önlemek için */
}

#terminal-output {
    color: var(--snap-blue);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mockup-panel {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeInScale 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.mockup-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.app-screenshot {
    width: 260px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, 0.2);
    transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-screenshot.s1 {
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateX(15px);
}

.app-screenshot.s2 {
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg) translateX(-15px);
    z-index: 1;
}

.app-screenshot:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 229, 255, 0.4);
    z-index: 10;
}

.app-mockup-final:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.1);
    z-index: 10;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 229, 255, 0.4);
}

@media (max-width: 768px) {
    .mockup-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    .app-screenshot {
        width: 180px; /* Daha küçük görsel */
        transform: none !important;
    }
    .store-btns {
        flex-direction: column;
        gap: 15px;
    }
    .btn-close-protocol {
        margin-bottom: 40px; /* En altta yer kalsın */
    }
}

.store-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.store-btn {
    padding: 12px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.store-btn:hover {
    background: var(--snap-blue);
    color: var(--snap-dark);
}

.btn-close-protocol {
    background: transparent;
    color: var(--snap-orange);
    border: 1px solid var(--snap-orange);
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
}
/* Manifesto Section Styles */
.manifesto-box {
    background: rgba(26, 26, 46, 0.4);
    border: 1px solid rgba(0, 225, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

.manifesto-header {
    background: rgba(0, 225, 255, 0.1);
    padding: 15px 25px;
    border-bottom: 1px solid rgba(0, 225, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--snap-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.manifesto-header i {
    width: 18px;
    height: 18px;
}

.manifesto-content {
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.manifesto-item {
    border-left: 2px solid rgba(0, 225, 255, 0.1);
    padding-left: 25px;
    transition: 0.3s;
}

.manifesto-item:hover {
    border-left-color: var(--snap-blue);
    transform: translateX(5px);
}

.m-title {
    display: block;
    font-family: 'Syncopate', sans-serif;
    font-size: 0.85rem;
    color: var(--snap-blue);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.manifesto-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.manifesto-footer {
    padding: 20px 40px;
    background: rgba(2, 2, 5, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--snap-orange);
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .manifesto-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
/* Intelligence & Metrics Styles */
.intelligence-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.intel-text h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--snap-white);
}

.intel-list {
    list-style: none;
    margin-top: 30px;
}

.intel-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.intel-list i {
    color: var(--snap-blue);
    width: 20px;
    height: 20px;
}

.metrics-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.metric-card {
    margin-bottom: 30px;
}

.metric-card:last-child {
    margin-bottom: 0;
}

.m-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: rgba(0, 225, 255, 0.6);
    margin-bottom: 8px;
    letter-spacing: 2px;
}

.m-value {
    display: block;
    font-family: 'Syncopate', sans-serif;
    font-size: 1.4rem;
    color: var(--snap-white);
    margin-bottom: 12px;
}

.m-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    overflow: hidden;
}

.m-progress {
    height: 100%;
    background: linear-gradient(to right, var(--snap-blue), var(--snap-purple));
    box-shadow: 0 0 10px var(--snap-blue);
}

@media (max-width: 900px) {
    .intelligence-wrapper {
        grid-template-columns: 1fr;
    }
}
/* Network Map Section */
.map-container {
    width: 100%;
    height: 600px;
    background: rgba(26, 26, 46, 0.3);
    border: 1px solid rgba(0, 225, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-world {
    width: 100%;
    height: 100%;
    position: relative;
    /* High-tech world map pattern using SVG Mask or Background */
    background-image: 
        linear-gradient(rgba(0, 229, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    opacity: 0.8;
}

.digital-world::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
}

.node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--snap-blue);
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 15px var(--snap-blue);
}

.pulse-1 { animation: nodePulse 2s infinite; }
.pulse-2 { animation: nodePulse 2s infinite 0.7s; }
.pulse-3 { animation: nodePulse 2s infinite 1.4s; }

@keyframes nodePulse {
    0% { transform: scale(1); box-shadow: 0 0 10px var(--snap-blue); }
    50% { transform: scale(1.5); box-shadow: 0 0 25px var(--snap-blue), 0 0 40px var(--snap-blue); }
    100% { transform: scale(1); box-shadow: 0 0 10px var(--snap-blue); }
}

.map-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.network-line {
    fill: none;
    stroke: var(--snap-blue);
    stroke-width: 1;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 0.2;
    animation: lineFlow 5s linear infinite;
}

@keyframes lineFlow {
    0% { stroke-dashoffset: 1000; opacity: 0; }
    20% { opacity: 0.3; }
    80% { opacity: 0.3; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

.map-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.map-stats {
    display: flex;
    gap: 30px;
    background: rgba(2, 2, 5, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid rgba(0, 225, 255, 0.2);
}

.m-stat {
    display: flex;
    flex-direction: column;
}

.m-stat .m-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    color: var(--snap-blue);
    opacity: 0.7;
    margin-bottom: 4px;
}

.m-stat .m-value {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.1rem;
    color: var(--snap-white);
}

/* Animations for new section */
#network-map.reveal.active .network-line {
    animation-play-state: running;
}

/* Neural Shield Section */
.shield-container {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

.shield-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

.shield-icon i {
    width: 80px;
    height: 80px;
    color: var(--snap-orange);
    filter: drop-shadow(0 0 20px var(--snap-orange));
}

.threat-counter {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
}

#threat-count {
    font-family: 'Syncopate', sans-serif;
    font-size: 3.5rem;
    color: var(--snap-orange);
    letter-spacing: -2px;
}

.t-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Comparison Table */
.table-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.8rem;
    color: var(--snap-blue);
    background: rgba(0, 229, 255, 0.05);
    letter-spacing: 2px;
}

.secure { color: var(--snap-blue); font-weight: 700; }
.danger { color: var(--snap-orange); opacity: 0.7; }

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding-left: 50px;
    margin-top: 50px;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 0; top: 0; width: 2px; height: 100%;
    background: linear-gradient(to bottom, var(--snap-blue), var(--snap-purple));
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -55px; top: 0; width: 12px; height: 12px;
    background: var(--snap-dark);
    border: 2px solid var(--snap-blue);
    border-radius: 50%;
}

.timeline-item.active::before {
    background: var(--snap-blue);
    box-shadow: 0 0 15px var(--snap-blue);
}

.t-date {
    font-family: 'Space Mono', monospace;
    color: var(--snap-blue);
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.t-content h4 {
    font-family: 'Syncopate', sans-serif;
    margin-bottom: 10px;
}

/* Transparency Grid */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.t-card {
    background: rgba(2, 2, 5, 0.6);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 40px;
    text-align: center;
    border-radius: 12px;
    transition: 0.4s;
}

.t-card:hover {
    border-color: var(--snap-blue);
    transform: translateY(-5px);
}

.t-val {
    display: block;
    font-family: 'Syncopate', sans-serif;
    font-size: 2rem;
    color: var(--snap-white);
    margin-bottom: 10px;
}

.t-lab {
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: var(--snap-blue);
    opacity: 0.6;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .shield-container { flex-direction: column; text-align: center; padding: 40px; }
    #threat-count { font-size: 2.5rem; }
    th, td { padding: 15px; font-size: 0.8rem; }
}

/* Neural ID Card - Permanent Styles */
.shield-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.neural-id-card {
    display: block; /* Always visible now */
    width: 100%;
    max-width: 420px;
    background: rgba(2, 2, 5, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 229, 255, 0.3);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50% { transform: translateY(-15px) rotateX(-2deg); }
}

.id-refresh-btn {
    margin-top: 25px;
    width: 100%;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.3);
    color: var(--snap-blue);
    padding: 12px;
    border-radius: 12px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.id-refresh-btn:hover {
    background: var(--snap-blue);
    color: var(--snap-dark);
}

.id-refresh-btn i {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .shield-grid { grid-template-columns: 1fr; }
}

.card-glow {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
    pointer-events: none;
}

.card-header-id {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 229, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.id-logo {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--snap-blue);
}

.id-status {
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--snap-blue);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 2px;
}

.card-body-id {
    display: flex;
    gap: 25px;
    align-items: center;
}

.id-avatar {
    width: 80px;
    height: 80px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px dashed var(--snap-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.id-avatar i {
    width: 40px;
    height: 40px;
    color: var(--snap-blue);
}

.id-info {
    flex: 1;
    text-align: left;
}

.id-row {
    margin-bottom: 8px;
}

.id-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.4);
}

.id-value {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: var(--snap-white);
    font-weight: 700;
}

.card-footer-id {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Space Mono', monospace;
    font-size: 0.55rem;
    color: var(--snap-orange);
    letter-spacing: 1px;
}

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Architecture Section Styles */
.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.arch-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 229, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.arch-card:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--snap-blue);
    transform: translateY(-10px);
}

.arch-icon {
    margin-bottom: 25px;
}

.arch-icon i {
    width: 40px;
    height: 40px;
    color: var(--snap-blue);
}

.arch-card h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--snap-white);
}

.arch-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 450px) {
    .arch-card { padding: 30px; }
    .architecture-grid { grid-template-columns: 1fr; }
}

@media (max-width: 450px) {
    .neural-id-card { width: 100%; padding: 20px; max-width: 340px; }
    .id-avatar { width: 60px; height: 60px; }
    .id-value { font-size: 0.75rem; }
    .id-logo { font-size: 0.8rem; }
    
    h1 { 
        font-size: 10vw !important; 
        letter-spacing: 2px !important; 
        white-space: nowrap;
    }
    
    .section-title h2 { 
        font-size: 6vw !important; 
        white-space: nowrap;
        letter-spacing: 1px !important;
    }
    
    h2.subtitle { font-size: 0.9rem !important; }
    .hero-subtitle { font-size: 0.85rem !important; }
    
    .shield-container { padding: 30px !important; gap: 20px !important; }
    #threat-count { font-size: 2rem !important; }
    
    .nav-links { display: none; } 
    .container { padding: 0 15px; }

    /* Tablo Taşma Çözümü */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 20px -15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    
    table { min-width: 500px; }
    th, td { padding: 12px 15px !important; font-size: 0.7rem !important; }
}
/* Future Vision Section Styles */
.future-expand-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(0, 225, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

.future-expand-card:hover {
    border-color: var(--snap-blue);
    box-shadow: 0 0 30px rgba(0, 225, 255, 0.05);
}

.future-card-header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 225, 255, 0.03);
}

.header-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-main i {
    color: var(--snap-blue);
    width: 28px;
    height: 28px;
}

.header-main h3 {
    font-family: 'Syncopate', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: var(--snap-white);
}

.header-action {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--snap-blue);
}

#expand-icon {
    transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.future-card-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0 40px;
}

.future-card-content.active {
    max-height: 5000px; /* Mobile stack can be very long */
    opacity: 1;
    padding-bottom: 40px;
    padding-top: 40px;
    overflow: visible; /* Ensure nothing is cut off */
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.future-item {
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: 0.3s;
}

.future-item:hover {
    background: rgba(0, 225, 255, 0.02);
    border-color: rgba(0, 225, 255, 0.1);
}

.f-num {
    font-family: 'Space Mono', monospace;
    color: var(--snap-blue);
    font-size: 1.5rem;
    opacity: 0.3;
    margin-bottom: 15px;
}

.future-item h4 {
    font-family: 'Syncopate', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--snap-blue);
}

.future-item p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.future-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.future-footer p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 20px;
    font-style: italic;
}

.architect-sig {
    font-family: 'Space Mono', monospace;
    color: var(--snap-orange);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    .future-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .header-action {
        align-self: flex-end;
    }
    .future-grid {
        grid-template-columns: 1fr;
    }
}
