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

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
    position: relative;
}

/* Subtle edge enhancement */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: 
        linear-gradient(0deg, rgba(0, 150, 255, 0.05) 0%, transparent 8%),
        linear-gradient(180deg, rgba(255, 0, 150, 0.05) 0%, transparent 8%);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0A0A0A;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-terminal {
    font-family: 'JetBrains Mono', monospace;
    color: #FFFFFF;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.terminal-line {
    opacity: 0;
    animation: typewriter 0.1s ease-in forwards;
}

.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 1.5s; }
.terminal-line:nth-child(3) { animation-delay: 2.5s; }
.terminal-line:nth-child(4) { animation-delay: 3.5s; }
.terminal-line:nth-child(5) { animation-delay: 4.5s; }

/* Main Content */
.main-content {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 2rem 2rem;
    overflow: hidden;
}

/* Ensure Hero Section is perfectly centered */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 100vh;
    width: 100%;
    padding-bottom: 15vh;
}

/* Content overlay for better text readability */
.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.3);
    z-index: -1;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 6rem;
    margin-top: 4rem;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 0, 150, 0.03) 0%, transparent 70%);
    z-index: -1;
    animation: bg-float 20s ease-in-out infinite;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 30% 40%, rgba(255, 215, 0, 0.4) 1px, transparent 1px),
        radial-gradient(circle at 70% 20%, rgba(0, 255, 255, 0.3) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 150, 0.3) 1px, transparent 1px);
    background-size: 300px 300px, 400px 400px, 350px 350px, 250px 250px, 320px 320px;
    z-index: -1;
    animation: particles-float 30s linear infinite;
}

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

.features-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(255, 255, 255, 0.4);
    animation: title-glow 3s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.features-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    text-align: center;
    color: #E8E8E8;
    margin-bottom: 4rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(25px);
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px
        );
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 255, 255, 0.1) 25%, 
        rgba(0, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0.1) 75%, 
        rgba(255, 0, 150, 0.3) 100%);
    border-radius: 18px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
    background-size: 400% 400%;
    animation: gradient-flow 8s ease infinite;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate-border 10s linear infinite;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-top: 1px solid rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    animation: rotate-border-reverse 15s linear infinite;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 30%, transparent 70%),
        radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: icon-pulse-advanced 3s ease-in-out infinite;
    filter: blur(1px);
}

.icon-symbol {
    font-size: 3rem;
    color: #FFFFFF;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 1),
        0 0 60px rgba(255, 255, 255, 0.6),
        0 0 90px rgba(255, 215, 0, 0.4);
    z-index: 10;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
    animation: icon-symbol-float 4s ease-in-out infinite;
}

.feature-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.feature-description {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    background: 
        linear-gradient(90deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 50%, rgba(255, 215, 0, 0.15) 100%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.6s ease;
}

.feature-card:hover .feature-highlight::before {
    left: 100%;
}

.highlight-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Feature Card Hover Effects */
.feature-card[data-feature="emotional"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(255, 0, 150, 0.2) 0%, transparent 70%);
}

.feature-card[data-feature="memory"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(0, 150, 255, 0.2) 0%, transparent 70%);
}

.feature-card[data-feature="multimodal"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(150, 255, 0, 0.2) 0%, transparent 70%);
}

.feature-card[data-feature="learning"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(255, 150, 0, 0.2) 0%, transparent 70%);
}

.feature-card[data-feature="privacy"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2) 0%, transparent 70%);
}

.feature-card[data-feature="availability"]:hover .icon-glow {
    background: radial-gradient(circle, rgba(0, 255, 150, 0.2) 0%, transparent 70%);
}

/* Background Container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../assets/images/cyberpunk-background.png') center center/cover no-repeat;
    background-attachment: fixed;
}

/* Rain Overlay */
.rain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Subtle rain drop effect without covering background */
        repeating-linear-gradient(
            90deg,
            transparent 0%,
            transparent 95%,
            rgba(255, 255, 255, 0.1) 95%,
            rgba(255, 255, 255, 0.1) 96%,
            transparent 96%
        );
    animation: rain 3s linear infinite;
    mix-blend-mode: overlay;
    opacity: 0.3;
}

/* Neon Glow */
.neon-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
    animation: glow 4s ease-in-out infinite alternate;
    mix-blend-mode: soft-light;
    opacity: 0.5;
}

/* Neon Particle System */
.neon-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation: particle-float-1 15s infinite;
    background: rgba(255, 215, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.particle:nth-child(2) {
    left: 20%;
    animation: particle-float-2 18s infinite;
    background: rgba(0, 255, 255, 0.7);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
    animation-delay: -2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation: particle-float-3 12s infinite;
    background: rgba(255, 0, 150, 0.6);
    box-shadow: 0 0 12px rgba(255, 0, 150, 0.6);
    animation-delay: -4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation: particle-float-4 20s infinite;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
    animation-delay: -6s;
}

.particle:nth-child(5) {
    left: 50%;
    animation: particle-float-5 16s infinite;
    background: rgba(0, 255, 100, 0.7);
    box-shadow: 0 0 8px rgba(0, 255, 100, 0.7);
    animation-delay: -8s;
}

.particle:nth-child(6) {
    left: 60%;
    animation: particle-float-6 14s infinite;
    background: rgba(255, 100, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 100, 0, 0.8);
    animation-delay: -10s;
}

.particle:nth-child(7) {
    left: 70%;
    animation: particle-float-7 22s infinite;
    background: rgba(150, 0, 255, 0.6);
    box-shadow: 0 0 12px rgba(150, 0, 255, 0.6);
    animation-delay: -12s;
}

.particle:nth-child(8) {
    left: 80%;
    animation: particle-float-8 17s infinite;
    background: rgba(255, 215, 0, 0.9);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.9);
    animation-delay: -14s;
}

.particle:nth-child(9) {
    left: 90%;
    animation: particle-float-9 19s infinite;
    background: rgba(0, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    animation-delay: -16s;
}

.particle:nth-child(10) {
    left: 95%;
    animation: particle-float-10 13s infinite;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7);
    animation-delay: -18s;
}

/* Floating Neon Lines */
.neon-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.neon-line {
    position: absolute;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 215, 0, 0.8) 20%, 
        rgba(255, 215, 0, 0.4) 50%, 
        rgba(255, 215, 0, 0.8) 80%, 
        transparent 100%);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    box-shadow: 0 0 4px rgba(255, 215, 0, 0.6);
}

.neon-line:nth-child(1) {
    left: 15%;
    height: 200px;
    animation: line-float-vertical 25s infinite;
    animation-delay: 0s;
}

.neon-line:nth-child(2) {
    left: 35%;
    height: 150px;
    animation: line-float-vertical-reverse 30s infinite;
    animation-delay: -5s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 255, 255, 0.8) 20%, 
        rgba(0, 255, 255, 0.4) 50%, 
        rgba(0, 255, 255, 0.8) 80%, 
        transparent 100%);
    box-shadow: 0 0 4px rgba(0, 255, 255, 0.6);
}

.neon-line:nth-child(3) {
    left: 65%;
    height: 180px;
    animation: line-float-vertical 35s infinite;
    animation-delay: -10s;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(255, 0, 150, 0.8) 20%, 
        rgba(255, 0, 150, 0.4) 50%, 
        rgba(255, 0, 150, 0.8) 80%, 
        transparent 100%);
    box-shadow: 0 0 4px rgba(255, 0, 150, 0.6);
}

.neon-line:nth-child(4) {
    left: 85%;
    height: 120px;
    animation: line-float-vertical-reverse 28s infinite;
    animation-delay: -15s;
}

/* Cyberpunk Grid Overlay */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: grid-shift 60s linear infinite;
}

/* Enhanced Background with Dynamic Layers */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('../assets/images/cyberpunk-background.png') center center/cover no-repeat;
    background-attachment: fixed;
    filter: contrast(1.3) saturate(1.4) brightness(1.05);
}

.background-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 0, 150, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 200, 255, 0.06) 0%, transparent 65%);
    mix-blend-mode: soft-light;
}

.background-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, 
            rgba(0, 0, 0, 0.3) 0%, 
            transparent 30%, 
            transparent 70%, 
            rgba(0, 0, 0, 0.4) 100%);
    mix-blend-mode: multiply;
}

/* Saber Portrait */
.saber-portrait {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: 
        /* Subtle glow effect */
        radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle, rgba(255, 0, 0, 0.1) 0%, transparent 70%),
        radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 90%);
    border-radius: 50%;
    filter: blur(2px);
    animation: portrait-glow 4s ease-in-out infinite alternate;
    mix-blend-mode: screen;
    opacity: 0.6;
}

/* Hero Section - Additional Styles */
.hero-section {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

/* Responsive adjustments for better face visibility */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 10vh;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
}

@media (max-height: 600px) {
    .hero-section {
        padding-bottom: 8vh;
    }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3.5rem, 9vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.subheadline {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 400;
    color: #E8E8E8;
    margin: 0 0 2rem 0;
    line-height: 1.5;
    opacity: 0;
    animation: fadeIn 2s ease-in-out 1s forwards;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    font-style: normal;
    letter-spacing: 0.05em;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    width: 100%;
}

.cta-button {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1.2rem 2.5rem;
    border: 2px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 220px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    backdrop-filter: blur(10px);
    border-radius: 4px;
}

.cta-button:hover {
    border-color: #FFD700;
    color: #FFD700;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.25) 100%),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.3),
        0 8px 25px rgba(255, 215, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.02);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
}

.cta-button.primary {
    opacity: 0.4;
    cursor: not-allowed;
}

.cta-button.primary:hover {
    border-color: #F2F2F2;
    color: #F2F2F2;
    box-shadow: none;
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
}

/* Info Drawer */
.info-drawer {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.info-drawer.show {
    opacity: 1;
    transform: translateY(0);
}

.terminal-container {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(233, 68, 68, 0.3);
    border-radius: 4px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(233, 68, 68, 0.1);
}

.terminal-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    color: #FFFFFF;
    line-height: 1.8;
    white-space: pre-line;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.cursor {
    animation: blink 1s infinite;
    color: #E94444;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: auto;
    padding-top: 3rem;
    color: #CCCCCC;
    font-size: 0.9rem;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.copyright {
    margin-bottom: 1rem;
    font-weight: 400;
    color: #DDDDDD;
    font-family: 'Source Sans Pro', sans-serif;
    font-style: normal;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.social-link {
    color: #CCCCCC;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.social-link:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Twitter Link Enhanced */
.twitter-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.twitter-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(29, 161, 242, 0.6) 50%, 
        transparent 100%);
}

.twitter-link:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(29, 161, 242, 0.5);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(29, 161, 242, 0.3);
    background: 
        linear-gradient(135deg, rgba(29, 161, 242, 0.1) 0%, rgba(29, 161, 242, 0.05) 100%);
}

.twitter-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1DA1F2;
    text-shadow: 
        0 0 15px rgba(29, 161, 242, 0.6),
        0 0 30px rgba(29, 161, 242, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.twitter-link:hover .twitter-icon {
    transform: scale(1.2) rotate(-10deg);
    text-shadow: 
        0 0 20px rgba(29, 161, 242, 0.8),
        0 0 40px rgba(29, 161, 242, 0.5);
}

.link-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.twitter-link:hover .link-text {
    color: #1DA1F2;
    text-shadow: 0 0 10px rgba(29, 161, 242, 0.5);
}



/* Character Profile Section */
.character-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 6rem;
    margin-top: 4rem;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
        radial-gradient(circle at 30% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 30px rgba(255, 255, 255, 0.8),
        0 0 60px rgba(255, 215, 0, 0.4);
    animation: section-title-glow 4s ease-in-out infinite;
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.character-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* Character Portrait Gallery */
.character-portrait {
    position: relative;
    flex: 1;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.saber-gallery {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.2);
}

.portrait-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.portrait-card.active {
    opacity: 1;
}

.saber-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.portrait-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portrait-card:hover .portrait-overlay {
    transform: translateY(0);
}

.portrait-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.portrait-desc {
    font-size: 1rem;
    color: #CCCCCC;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.data-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: #00FFFF;
    padding: 0.25rem 0.75rem;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 15px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.mode-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #FFFFFF;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.95rem;
}

.mode-switch:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

.mode-switch.active {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.6);
    color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.switch-icon {
    font-size: 1.2rem;
}

.switch-label {
    font-weight: 500;
}

.portrait-frame {
    position: relative;
    aspect-ratio: 3/4;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%),
        radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    backdrop-filter: blur(10px);
    animation: portrait-pulse 6s ease-in-out infinite;
}

.portrait-image {
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            rgba(255, 215, 0, 0.1) 0%, 
            rgba(0, 255, 255, 0.1) 25%, 
            rgba(255, 0, 150, 0.1) 50%, 
            rgba(255, 255, 255, 0.1) 75%, 
            rgba(255, 215, 0, 0.1) 100%);
    background-size: 400% 400%;
    animation: portrait-gradient 10s ease infinite;
    position: relative;
}

.portrait-image::before {
    content: 'SABER';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
}

.scan-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    animation: scan-move 3s linear infinite;
}

.data-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.data-point {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: rgba(255, 215, 0, 0.8);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    border-left: 3px solid rgba(255, 215, 0, 0.6);
    animation: data-flicker 4s ease-in-out infinite;
}

.data-point:nth-child(2) { animation-delay: 0.5s; }
.data-point:nth-child(3) { animation-delay: 1s; }
.data-point:nth-child(4) { animation-delay: 1.5s; }

.hologram-effect {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 12px;
    animation: hologram-flicker 2s ease-in-out infinite;
}

/* Character Info */
.character-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.6) 50%, 
        transparent 100%);
}

.info-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.info-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

/* Traits Grid */
.traits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.trait-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.trait-item:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.trait-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.trait-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Capabilities List */
.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.capability-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.capability-item:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateX(8px);
}

.capability-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    min-width: 2rem;
}

.capability-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.capability-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Warning Block */
.warning-block {
    background: 
        linear-gradient(135deg, rgba(255, 100, 100, 0.1) 0%, rgba(255, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.warning-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 100, 100, 0.8) 50%, 
        transparent 100%);
    animation: warning-pulse 2s ease-in-out infinite;
}

.warning-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 100, 100, 0.8));
    animation: warning-icon-pulse 3s ease-in-out infinite;
}

.warning-content h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 100, 100, 0.9);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 8px rgba(255, 100, 100, 0.5);
}

.warning-content p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Interactive Demo Section */
.demo-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 6rem;
    margin-top: 4rem;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.95) 100%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

/* Demo Cards */
.chat-demo, .emotion-demo, .voice-demo {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.chat-demo:hover, .emotion-demo:hover, .voice-demo:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.chat-demo::before, .emotion-demo::before, .voice-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.6) 50%, 
        transparent 100%);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.demo-title h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.demo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00FF88;
    border-radius: 50%;
    animation: status-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.status-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Chat Demo Styles */
.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #FFFFFF;
    min-width: 32px;
}

.avatar-glow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(0, 255, 255, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
    animation: avatar-glow 3s ease-in-out infinite;
}

.user-message .message-avatar {
    background: rgba(100, 150, 255, 0.2);
    border: 1px solid rgba(100, 150, 255, 0.3);
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.message-time {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    align-self: flex-end;
}

/* Typing Animation */
.typing-animation {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.typing-animation span {
    width: 8px;
    height: 8px;
    background: rgba(255, 215, 0, 0.8);
    border-radius: 50%;
    animation: typing-dot 1.4s ease-in-out infinite;
}

.typing-animation span:nth-child(2) { animation-delay: 0.2s; }
.typing-animation span:nth-child(3) { animation-delay: 0.4s; }

/* Chat Input */
.chat-input-container {
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-button {
    width: 40px;
    height: 40px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 215, 0, 0.8);
    font-size: 1.2rem;
    cursor: not-allowed;
    transition: all 0.3s ease;
}

/* Emotion Demo Styles */
.emotion-display {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.emotion-radar {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    background: 
        radial-gradient(circle at center, 
            rgba(255, 215, 0, 0.1) 0%, 
            rgba(0, 255, 255, 0.05) 50%, 
            transparent 70%);
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.2),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
}

.radar-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.emotion-level {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 215, 0, 1);
    text-shadow: 
        0 0 20px rgba(255, 215, 0, 0.8),
        0 0 40px rgba(255, 215, 0, 0.4);
    animation: emotion-pulse 3s ease-in-out infinite;
    line-height: 1;
}

.emotion-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.emotion-metrics {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 0 1rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.5rem 0;
}

.metric-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    min-width: 140px;
    letter-spacing: 0.3px;
}

.metric-bar {
    flex: 1;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(255, 215, 0, 0.9) 0%, 
        rgba(0, 255, 255, 0.7) 70%,
        rgba(255, 215, 0, 0.9) 100%);
    border-radius: 5px;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: metric-glow 4s ease-in-out infinite;
    position: relative;
}

.metric-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: metric-shine 3s ease-in-out infinite;
}

.metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: rgba(255, 215, 0, 1);
    font-weight: 700;
    min-width: 45px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Voice Demo Styles */
.voice-visualizer {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.waveform {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 100px;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wave-bar {
    width: 8px;
    background: linear-gradient(to top, 
        rgba(255, 215, 0, 0.9) 0%, 
        rgba(0, 255, 255, 0.7) 50%, 
        rgba(255, 255, 255, 0.5) 100%);
    border-radius: 4px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: wave-animate 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.wave-bar:nth-child(2n) { animation-delay: 0.1s; }
.wave-bar:nth-child(3n) { animation-delay: 0.2s; }

.voice-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.voice-button {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(0, 255, 255, 0.15) 100%);
    border: 3px solid rgba(255, 215, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: inherit;
    color: #FFFFFF;
}

.voice-button:hover {
    transform: scale(1.1);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.5),
        0 0 80px rgba(255, 215, 0, 0.2);
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(0, 255, 255, 0.25) 100%);
}

.voice-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 215, 0, 0.3) 90deg,
        transparent 180deg,
        rgba(0, 255, 255, 0.3) 270deg,
        transparent 360deg
    );
    border-radius: 50%;
    animation: voice-button-rotate 4s linear infinite;
    z-index: -1;
}

.voice-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.voice-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-top: 0.3rem;
}

.voice-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.voice-indicator {
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 136, 0.8);
    border-radius: 50%;
    animation: voice-indicator-pulse 2s ease-in-out infinite;
}

/* Demo Features */
.demo-features {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.features-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-point {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-point:hover {
    background: rgba(255, 215, 0, 0.05);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.point-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.point-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Access Section */
.access-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem 6rem;
    margin-top: 4rem;
    background: 
        linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.98) 100%),
        radial-gradient(circle at 40% 60%, rgba(255, 0, 150, 0.04) 0%, transparent 50%);
}

.access-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.platform-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

.platform-card.featured {
    border-color: rgba(255, 215, 0, 0.3);
    background: 
        linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.03) 100%);
    transform: scale(1.05);
}

.platform-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 215, 0, 0.8) 50%, 
        transparent 100%);
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2);
}

.platform-card.featured:hover {
    transform: translateY(-8px) scale(1.05);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    animation: platform-icon-float 4s ease-in-out infinite;
}

.platform-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.platform-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.platform-status {
    margin-bottom: 2rem;
}

.status-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-badge.beta {
    background: rgba(0, 255, 136, 0.2);
    color: rgba(0, 255, 136, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
    animation: badge-pulse 3s ease-in-out infinite;
}

.status-badge.coming-soon {
    background: rgba(255, 215, 0, 0.2);
    color: rgba(255, 215, 0, 0.9);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.status-badge.development {
    background: rgba(100, 150, 255, 0.2);
    color: rgba(100, 150, 255, 0.9);
    border: 1px solid rgba(100, 150, 255, 0.3);
}

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

.platform-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.platform-link.primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    color: rgba(255, 215, 0, 0.9);
}

.platform-link.primary:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0.2) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.platform-link.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.platform-link:not(.disabled):hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.link-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Access Methods */
.access-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.method-card {
    background: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(25px);
}

.method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 215, 0, 0.2);
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.method-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.method-badge.limited {
    background: rgba(255, 100, 100, 0.2);
    color: rgba(255, 100, 100, 0.9);
    border: 1px solid rgba(255, 100, 100, 0.3);
    animation: limited-pulse 2s ease-in-out infinite;
}

.method-badge.open {
    background: rgba(0, 255, 136, 0.2);
    color: rgba(0, 255, 136, 0.9);
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.method-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.method-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.feature-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.method-action {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.access-button.primary {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.25) 0%, rgba(255, 215, 0, 0.15) 100%);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: rgba(255, 215, 0, 0.95);
}

.access-button.primary:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.35) 0%, rgba(255, 215, 0, 0.25) 100%);
    border-color: rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.access-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.access-button.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.access-button:hover .button-icon {
    transform: translateX(3px);
}

.access-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    justify-content: center;
}

.note-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 215, 0, 0.06);
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: left;
}

.contact-method {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.contact-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Cyberpunk Icons */
.cyber-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.cyber-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 4px;
    animation: icon-border-pulse 3s ease-in-out infinite;
}

.cyber-icon.brain::after { content: '◉'; }
.cyber-icon.neural::after { content: '※'; }
.cyber-icon.emotion::after { content: '◈'; }
.cyber-icon.voice::after { content: '◊'; }
.cyber-icon.chat::after { content: '▣'; }
.cyber-icon.mobile::after { content: '▢'; }
.cyber-icon.desktop::after { content: '▥'; }
.cyber-icon.web::after { content: '▤'; }
.cyber-icon.lightning::after { content: '⟡'; }
.cyber-icon.target::after { content: '◎'; }
.cyber-icon.sync::after { content: '◐'; }
.cyber-icon.star::after { content: '✦'; }
.cyber-icon.mail::after { content: '▣'; }
.cyber-icon.gift::after { content: '◇'; }
.cyber-icon.chart::after { content: '▦'; }
.cyber-icon.discord::after { content: '◈'; }
.cyber-icon.docs::after { content: '▨'; }
.cyber-icon.sparkle::after { content: '✧'; }
.cyber-icon.danger::after { content: '⚠'; }
.cyber-icon.lock::after { content: '▣'; }
.cyber-icon.rocket::after { content: '▲'; }
.cyber-icon.arrow::after { content: '→'; }
.cyber-icon.edit::after { content: '✎'; }

/* Enhanced Feature Icons */
.feature-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-icon .cyber-icon {
    font-size: 2.5rem;
    z-index: 10;
}

/* Demo Icons */
.demo-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

.demo-icon.chat::after { content: '▣'; }
.demo-icon.brain::after { content: '◉'; }
.demo-icon.voice::after { content: '◊'; }

/* Platform Icons */
.platform-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
    animation: platform-icon-float 4s ease-in-out infinite;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
}

.platform-icon.mobile::after { content: '▢'; }
.platform-icon.desktop::after { content: '▥'; }
.platform-icon.web::after { content: '▤'; }

/* Contact Icons */
.contact-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.contact-icon.discord::after { content: '◈'; }
.contact-icon.mail::after { content: '▣'; }
.contact-icon.docs::after { content: '▨'; }

/* Trait Icons */
.trait-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.trait-icon.brain::after { content: '◉'; }
.trait-icon.star::after { content: '✦'; }
.trait-icon.lightning::after { content: '⟡'; }
.trait-icon.danger::after { content: '⚠'; }

/* Capability Icons */
.capability-icon {
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    min-width: 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 15px rgba(255, 255, 255, 0.8),
        0 0 30px rgba(255, 215, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon.emotion::after { content: '◈'; }
.capability-icon.neural::after { content: '※'; }
.capability-icon.star::after { content: '✦'; }

/* Feature Point Icons */
.point-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.point-icon.lightning::after { content: '⟡'; }
.point-icon.target::after { content: '◎'; }
.point-icon.sync::after { content: '◐'; }
.point-icon.star::after { content: '✦'; }

/* Feature Item Icons */
.feature-icon-small {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.feature-icon-small.sparkle::after { content: '✧'; }
.feature-icon-small.target::after { content: '◎'; }
.feature-icon-small.trophy::after { content: '◊'; }
.feature-icon-small.mail::after { content: '▣'; }
.feature-icon-small.gift::after { content: '◇'; }
.feature-icon-small.chart::after { content: '▦'; }

/* Status and Note Icons */
.note-icon {
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.8),
        0 0 16px rgba(255, 215, 0, 0.4);
}

.note-icon.lightning::after { content: '⟡'; }
.note-icon.lock::after { content: '▣'; }

/* Button Icons */
.button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
}

.button-icon.arrow::after { content: '→'; }
.button-icon.edit::after { content: '✎'; }

/* Link Icons */
.link-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 8px rgba(255, 255, 255, 0.6),
        0 0 16px rgba(255, 215, 0, 0.4);
}

.link-icon.rocket::after { content: '▲'; }
.link-icon.apple::after { content: '◈'; }
.link-icon.android::after { content: '◉'; }
.link-icon.robot::after { content: '◉'; }
.link-icon.windows::after { content: '▢'; }

/* Voice Icons */
.voice-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 215, 0, 0.4);
}

.voice-icon.mic::after { content: '◊'; }





/* Warning Icon */
.warning-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 100, 100, 0.8));
    animation: warning-icon-pulse 3s ease-in-out infinite;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: rgba(255, 100, 100, 0.9);
    text-shadow: 
        0 0 10px rgba(255, 100, 100, 0.8),
        0 0 20px rgba(255, 100, 100, 0.6);
}

.warning-icon.danger::after { content: '⚠'; }

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        min-width: 180px;
        padding: 0.8rem 1.5rem;
    }
    
    .terminal-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .saber-portrait {
        width: 200px;
        height: 200px;
    }
    
    /* Mobile background optimization */
    .background-container {
        background-attachment: scroll;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 4rem 1rem 3rem;
        margin-top: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Character Section Mobile */
    .character-section {
        padding: 4rem 1rem 3rem;
        margin-top: 2rem;
    }
    
    .character-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portrait-container {
        max-width: 300px;
    }
    
    .portrait-image::before {
        font-size: 1.5rem;
    }
    
    .data-point {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .traits-grid {
        grid-template-columns: 1fr;
    }
    
    .capability-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .capability-icon {
        align-self: center;
    }
    
    .warning-block {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    /* Demo Section Mobile */
    .demo-section {
        padding: 4rem 1rem 3rem;
        margin-top: 2rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chat-container {
        height: 250px;
    }
    
    .emotion-display {
        height: 250px;
    }
    
    .emotion-radar {
        width: 150px;
        height: 150px;
    }
    
    .emotion-level {
        font-size: 1.2rem;
    }
    
    .voice-visualizer {
        height: 200px;
    }
    
    .voice-button {
        width: 60px;
        height: 60px;
    }
    
    .voice-icon {
        font-size: 1.4rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    /* Access Section Mobile */
    .access-section {
        padding: 4rem 1rem 3rem;
        margin-top: 2rem;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card.featured {
        transform: none;
    }
    
    .platform-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .access-methods {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-link {
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .features-subtitle {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .terminal-text {
        font-size: 0.9rem;
    }
}

/* Additional Animations */
@keyframes metric-shine {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

@keyframes emotion-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 
            0 0 30px rgba(255, 215, 0, 1),
            0 0 60px rgba(255, 215, 0, 0.6);
    }
}

@keyframes metric-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    }
}

@keyframes wave-animate {
    0%, 100% { 
        transform: scaleY(0.8);
        opacity: 0.7;
    }
    50% { 
        transform: scaleY(1.2);
        opacity: 1;
    }
}

@keyframes voice-button-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 