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

:root {
    --primary-color: #00d9ff;
    --secondary-color: #0066ff;
    --accent-color: #ff00aa;
    --bg-dark: #0a0a0f;
    --bg-card: #131318;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --glow-color: rgba(0, 217, 255, 0.5);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(ellipse at center, #0f0f1a 0%, #0a0a0f 100%);
}

#canvas {
    width: 100%;
    height: 100%;
    opacity: 0.4;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section - Redesigned */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 217, 255, 0.1);
    animation: expandPulse 8s ease-in-out infinite;
}

.hero-circle-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.hero-circle-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 5%;
    animation-delay: 2s;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes expandPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-visual-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.element-1 {
    top: 10%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: floatDiamond 6s ease-in-out infinite;
}

.element-2 {
    top: 10%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: floatDiamond 6s ease-in-out infinite 1s;
    border-color: var(--accent-color);
}

.element-3 {
    bottom: 10%;
    left: 10%;
    border-radius: 50%;
    animation: floatDiamond 6s ease-in-out infinite 2s;
    border-color: var(--secondary-color);
}

.element-4 {
    bottom: 10%;
    right: 10%;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: floatDiamond 6s ease-in-out infinite 3s;
}

@keyframes floatDiamond {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

.central-diamond {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 250px;
    height: 250px;
    border: 3px solid var(--primary-color);
    animation: rotateDiamond 20s linear infinite;
}

.diamond-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 2px solid var(--accent-color);
    animation: pulseDiamond 3s ease-in-out infinite;
}

@keyframes rotateDiamond {
    from {
        transform: translate(-50%, -50%) rotate(45deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(405deg);
    }
}

@keyframes pulseDiamond {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease-out;
}

.badge-icon {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.badge-text {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title-massive {
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: 10px;
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.title-word {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlideIn 1s ease-out both;
    text-shadow: 0 0 80px rgba(0, 217, 255, 0.5);
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 50px;
    z-index: -1;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.7;
}

.title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.title-word:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.hero-tagline-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.tagline-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-description-enhanced {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--bg-dark);
    border: 2px solid transparent;
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4);
}

.btn-primary-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary-large:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 217, 255, 0.6);
}

.btn-primary-large:hover .btn-icon {
    transform: translateX(5px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 217, 255, 0.05);
    transform: translateY(-3px);
}

.hero-stats-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.mini-stat {
    text-align: center;
}

.mini-stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mini-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Products Section */
.products {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-underline {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.product-card {
    position: relative;
    perspective: 1000px;
}

.card-inner {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    transition: all 0.5s ease;
    overflow: hidden;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover .card-inner {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
}

.product-card:hover .card-glow {
    opacity: 0.3;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    padding: 0.4rem 1rem;
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.link-arrow {
    transition: transform 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

.card-link:hover .link-arrow {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(0, 217, 255, 0.05), transparent);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 217, 255, 0.05);
    border: 1px solid rgba(0, 217, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

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

.ai-orb-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: radial-gradient(circle at 30% 30%, #00f5ff, #0066ff 50%, #000033);
    border-radius: 50%;
    box-shadow:
        0 0 60px rgba(0, 217, 255, 0.8),
        0 0 100px rgba(0, 217, 255, 0.5),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    animation: orbPulse 3s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

.orb-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border: 2px solid rgba(0, 217, 255, 0.5);
    border-radius: 50%;
    animation: pulseBurst 2s ease-out infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes pulseBurst {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
}

.ring-1 {
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%) rotateX(70deg);
    animation: ringRotate1 8s linear infinite;
}

.ring-2 {
    width: 290px;
    height: 290px;
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(30deg);
    animation: ringRotate2 12s linear infinite;
    border-color: rgba(255, 0, 170, 0.3);
}

.ring-3 {
    width: 340px;
    height: 340px;
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(-30deg);
    animation: ringRotate3 10s linear infinite reverse;
    border-color: rgba(0, 102, 255, 0.3);
}

@keyframes ringRotate1 {
    from { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg); }
}

@keyframes ringRotate2 {
    from { transform: translate(-50%, -50%) rotateX(60deg) rotateY(30deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(60deg) rotateY(30deg) rotateZ(360deg); }
}

@keyframes ringRotate3 {
    from { transform: translate(-50%, -50%) rotateX(80deg) rotateY(-30deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(80deg) rotateY(-30deg) rotateZ(360deg); }
}

.orb-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color);
}

.particle-1 {
    top: 50%;
    left: 50%;
    animation: orbit1 4s linear infinite;
}

.particle-2 {
    top: 50%;
    left: 50%;
    animation: orbit2 5s linear infinite;
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color), 0 0 20px var(--accent-color);
}

.particle-3 {
    top: 50%;
    left: 50%;
    animation: orbit3 6s linear infinite;
    width: 6px;
    height: 6px;
}

.particle-4 {
    top: 50%;
    left: 50%;
    animation: orbit4 3.5s linear infinite;
    width: 5px;
    height: 5px;
    background: var(--secondary-color);
    box-shadow: 0 0 10px var(--secondary-color), 0 0 20px var(--secondary-color);
}

@keyframes orbit1 {
    from { transform: rotate(0deg) translateX(120px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
}

@keyframes orbit2 {
    from { transform: rotate(90deg) translateX(145px) rotate(-90deg); }
    to { transform: rotate(450deg) translateX(145px) rotate(-450deg); }
}

@keyframes orbit3 {
    from { transform: rotate(180deg) translateX(170px) rotate(-180deg); }
    to { transform: rotate(540deg) translateX(170px) rotate(-540deg); }
}

@keyframes orbit4 {
    from { transform: rotate(270deg) translateX(95px) rotate(-270deg); }
    to { transform: rotate(630deg) translateX(95px) rotate(-630deg); }
}

/* Contact Section */
.contact {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.contact-text {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin: 2rem 0 3rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow-color);
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    border-top: 1px solid rgba(0, 217, 255, 0.1);
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-massive {
        font-size: 7rem;
    }

    .hero-visual-large {
        width: 400px;
        height: 400px;
    }

    .central-diamond {
        width: 180px;
        height: 180px;
    }

    .diamond-core {
        width: 100px;
        height: 100px;
    }

    .floating-element {
        width: 70px;
        height: 70px;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        order: -1;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .hero {
        padding-top: 10rem;
    }

    .hero-title-massive {
        font-size: 4rem;
        letter-spacing: 5px;
    }

    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .hero-description-enhanced {
        font-size: 1rem;
    }

    .hero-visual-large {
        width: 300px;
        height: 300px;
    }

    .central-diamond {
        width: 120px;
        height: 120px;
    }

    .diamond-core {
        width: 70px;
        height: 70px;
    }

    .floating-element {
        width: 50px;
        height: 50px;
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .tagline-line {
        width: 30px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-width: auto;
    }

    .about-visual {
        margin: -2rem 0;
    }

    .ai-orb-container {
        width: 200px;
        height: 200px;
    }

    .orb-core {
        width: 60px;
        height: 60px;
    }

    .orb-glow {
        width: 100px;
        height: 100px;
    }

    .orb-pulse {
        width: 60px;
        height: 60px;
    }

    .ring-1 { width: 120px; height: 120px; }
    .ring-2 { width: 150px; height: 150px; }
    .ring-3 { width: 180px; height: 180px; }

    @keyframes orbit1 {
        from { transform: rotate(0deg) translateX(60px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(60px) rotate(-360deg); }
    }

    @keyframes orbit2 {
        from { transform: rotate(90deg) translateX(75px) rotate(-90deg); }
        to { transform: rotate(450deg) translateX(75px) rotate(-450deg); }
    }

    @keyframes orbit3 {
        from { transform: rotate(180deg) translateX(90px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(90px) rotate(-540deg); }
    }

    @keyframes orbit4 {
        from { transform: rotate(270deg) translateX(45px) rotate(-270deg); }
        to { transform: rotate(630deg) translateX(45px) rotate(-630deg); }
    }
}
