/* ========================================
   TECHNOLOGY PAGE STYLES
   Dark theme with cyber/tech aesthetic
   ======================================== */

/* Body & Base Styles */
.tech-body {
    background: #0a0a0f;
    color: #e4e4e7;
    overflow-x: hidden;
}

/* Navigation */
.tech-nav {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-nav .nav-links a {
    color: #e4e4e7;
}

.tech-nav .nav-links a:hover,
.tech-nav .nav-links a.active {
    color: #00f5ff;
}

/* Hero Section */
.tech-hero {
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #0a0a0f 0%, #14141f 100%);
    position: relative;
    overflow: hidden;
}

.tech-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 245, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: #00f5ff;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.tech-badge svg {
    flex-shrink: 0;
}

.tech-hero h1 {
    font-size: 72px;
    font-weight: 900;
    color: white;
    margin: 0 0 24px;
    line-height: 1.1;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #a1a1aa;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Hero Feature Pills */
.hero-features {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 245, 255, 0.08);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 15px;
    color: #e4e4e7;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: fit-content;
}

.hero-feature-pill:first-child {
    background: rgba(0, 245, 255, 0.08);
    border-color: rgba(0, 245, 255, 0.2);
}

.hero-feature-pill:last-child {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.2);
}

.hero-feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 245, 255, 0.15);
}

.hero-feature-pill:last-child:hover {
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.hero-feature-pill svg {
    flex-shrink: 0;
    stroke: #00f5ff;
}

.hero-feature-pill:last-child svg {
    stroke: #8b5cf6;
}

.hero-feature-pill span {
    font-weight: 500;
    line-height: 1.4;
}

/* Animated Orbs */
.tech-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #00f5ff 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 50%;
    right: -250px;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
    bottom: -175px;
    left: 30%;
    animation-delay: 10s;
}

@keyframes float-orb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.section-header p {
    font-size: 20px;
    color: #a1a1aa;
}

.tech-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.tech-label svg {
    flex-shrink: 0;
    stroke: #8b5cf6;
}

/* Core Principles Section */
.core-principles {
    background: #0a0a0f;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.principle-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.principle-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.1);
}

.principle-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.principle-icon svg {
    width: 48px;
    height: 48px;
    stroke: #00f5ff;
}

.principle-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.principle-card p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0;
}

/* AI Section */
.ai-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #14141f 100%);
}

.tech-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tech-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.tech-description {
    font-size: 18px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 40px;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tech-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00f5ff;
}

.feature-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
}

.feature-text p {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.6;
    margin: 0;
}

/* AI Card */
.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
    backdrop-filter: blur(10px);
}

.ai-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 245, 255, 0.5);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.3);
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ai-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.ai-info p {
    font-size: 16px;
    color: #00f5ff;
    margin: 0 0 32px;
}

.ai-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #00f5ff;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
    font-size: 13px;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why AI Section */
.why-ai-section {
    background: #0a0a0f;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.why-number {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    font-family: 'Space Grotesk', sans-serif;
}

.why-card p {
    font-size: 16px;
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0;
}

/* Blockchain Section */
.blockchain-section {
    background: linear-gradient(180deg, #14141f 0%, #0a0a0f 100%);
    overflow: visible;
}

.blockchain-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.blockchain-intro p {
    font-size: 18px;
    color: #a1a1aa;
    line-height: 1.7;
}

.coins-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    overflow: visible;
}

.coin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    opacity: 1;
    visibility: visible;
}

.coin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.waza-card {
    border-color: rgba(251, 191, 36, 0.3);
}

.waza-card:hover {
    background: rgba(251, 191, 36, 0.05);
    border-color: rgba(251, 191, 36, 0.5);
    box-shadow: 0 30px 80px rgba(251, 191, 36, 0.2);
}

.dopp-card {
    border-color: rgba(192, 192, 192, 0.3);
}

.dopp-card:hover {
    background: rgba(192, 192, 192, 0.05);
    border-color: rgba(192, 192, 192, 0.5);
    box-shadow: 0 30px 80px rgba(192, 192, 192, 0.2);
}

.worq-card {
    border-color: rgba(205, 127, 50, 0.3);
}

.worq-card:hover {
    background: rgba(205, 127, 50, 0.05);
    border-color: rgba(205, 127, 50, 0.5);
    box-shadow: 0 30px 80px rgba(205, 127, 50, 0.2);
}

.coin-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.coin-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coin-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    display: block;
}

.coin-info h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0 0 4px;
    font-family: 'Space Grotesk', sans-serif;
}

.coin-subtitle {
    font-size: 12px;
    color: #a1a1aa;
    margin: 0;
    line-height: 1.4;
}

.coin-description {
    margin-bottom: 24px;
    flex-grow: 1;
}

.coin-description p {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0 0 12px;
}

.coin-description p strong {
    color: white;
    font-weight: 700;
}

.blockchain-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.chain-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
}

.chain-name {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.chain-desc {
    font-size: 12px;
    color: #a1a1aa;
}

.coin-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.coin-link:hover {
    gap: 12px;
    color: #8b5cf6;
}

/* Why Blockchain Section */
.why-blockchain-section {
    background: #0a0a0f;
}

.blockchain-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 245, 255, 0.3);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: #00f5ff;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.benefit-card p {
    font-size: 15px;
    color: #a1a1aa;
    line-height: 1.7;
    margin: 0;
}

/* Tech Stack Section */
.tech-stack-section {
    background: linear-gradient(180deg, #0a0a0f 0%, #14141f 100%);
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.stack-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.stack-category:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
}

.stack-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.stack-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-list li {
    font-size: 15px;
    color: #a1a1aa;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 24px;
}

.stack-list li:last-child {
    border-bottom: none;
}

.stack-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #00f5ff;
    font-weight: 700;
}

/* Security Section */
.security-section {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.security-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.security-badge-large {
    font-size: 80px;
    margin-bottom: 24px;
}

.security-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.security-intro {
    font-size: 20px;
    color: #a1a1aa;
    line-height: 1.7;
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    color: #e4e4e7;
    text-align: left;
}

.security-check {
    color: #10b981;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.security-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00f5ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.security-link:hover {
    gap: 12px;
    color: #8b5cf6;
}

/* CTA Section */
.tech-cta {
    background: linear-gradient(135deg, #00f5ff 0%, #8b5cf6 100%);
    padding: 100px 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin: 0 0 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0a0a0f;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
}

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

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: #a1a1aa;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: #a1a1aa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00f5ff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #71717a;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-hero h1 {
        font-size: 56px;
    }

    .principles-grid,
    .coins-grid,
    .blockchain-benefits,
    .stack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .tech-hero {
        padding: 120px 0 80px;
    }

    .tech-hero h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }

    .hero-feature-pill {
        font-size: 14px;
        padding: 10px 20px;
        max-width: 100%;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .principles-grid,
    .why-grid,
    .coins-grid,
    .blockchain-benefits,
    .stack-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .security-features {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tech-hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .principle-card,
    .why-card,
    .coin-card,
    .benefit-card,
    .stack-category {
        padding: 24px;
    }

    .tech-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}
