:root {
    --color-deep-purple: #001a2e;
    --color-royal-purple: #0066cc;

    --color-neon-purple: #00d4ff;

    --color-cyber-pink: #33ddff;

    --color-electric-violet: #66e0ff;
    --color-light-purple: #99e6ff;
    --color-dark-surface: #000d1a;
    --color-dark-surface-elevated: #002040;
    --color-glass-surface: rgba(0, 26, 46, 0.6);
    --color-text-primary: #fff;
    --color-text-secondary: #b3e6ff;

    --color-text-muted: #6bb3d4;

    --gradient-primary: linear-gradient(135deg, var(--color-deep-purple) 0%, var(--color-royal-purple) 100%);
    --gradient-neon: linear-gradient(135deg, #00d4ff 0%, #66e0ff 100%);

    --shadow-glow: 0 0 25px rgba(0, 212, 255, 0.6);
    --shadow-glow-intense: 0 0 60px rgba(51, 221, 255, 0.8);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --space-md: 1rem;
    --space-xl: 2rem;
    --space-4xl: 6rem;

    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    --transition-base: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(ellipse 1200px 1200px at 0% 0%, rgba(0, 212, 255, 0.15), transparent 50%),
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(0, 212, 255, 0.08), transparent),
        radial-gradient(ellipse 600px 800px at 80% 70%, rgba(0, 102, 204, 0.06), transparent),
        radial-gradient(ellipse 1000px 400px at 50% 100%, rgba(0, 212, 255, 0.04), transparent),
        var(--color-deep-purple);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment,
::-webkit-scrollbar-button:vertical:start:increment,
::-webkit-scrollbar-button:vertical:end:decrement {
    display: none;
    width: 0;
    height: 0;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-surface);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--color-royal-purple), var(--color-neon-purple));
    border-radius: 10px;
    border: 2px solid var(--color-dark-surface);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-neon-purple);
    box-shadow: 0 0 10px var(--color-neon-purple);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-neon-purple) var(--color-dark-surface);
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    position: relative;
    z-index: 10;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.text-neon {
    color: var(--color-neon-purple);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.text-gradient {
    background: linear-gradient(to right, var(--color-neon-purple), var(--color-light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: var(--color-glass-surface);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 212, 255, 0.1),
        0 0 60px rgba(0, 212, 255, 0.05);
}

.glow:hover {
    box-shadow: var(--shadow-glow-intense),
        0 0 100px rgba(0, 212, 255, 0.2);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    letter-spacing: -0.05em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: inline-block;
}

.logo:hover {
    color: var(--color-neon-purple);
    transform: scale(1.1);
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px var(--color-neon-purple),
        0 0 40px var(--color-royal-purple);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.status-tag {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 212, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    animation: fadeIn 1s ease-out;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--color-neon-purple);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--color-neon-purple);
}

.status-dot::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: var(--color-neon-purple);
    opacity: 0.5;
    animation: pulse-status 2s ease-out infinite;
}

.status-text {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
}

@keyframes pulse-status {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.logo::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-neon-purple);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--color-neon-purple);
}

.logo:hover::after {
    width: 100%;
}

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

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-neon-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--color-neon-purple);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-primary);
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.3);
}

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

.nav-links a:active {
    transform: scale(0.95);
}

.nav-links .btn-primary {
    padding: 0.5rem 1.5rem;
    background: var(--color-neon-purple);
    color: white;
    border-radius: var(--radius-full);
}

#start-now-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.discord-reveal {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-discord {
    background-color: #5865F2;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.2);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(88, 101, 242, 0.4), 0 0 20px rgba(88, 101, 242, 0.6);
    background-color: #4752c4;
}

.discord-icon {
    width: 24px;
    height: 24px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

#hero-typing-text {
    background: linear-gradient(to right, var(--color-neon-purple), var(--color-electric-violet));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    display: inline;
}

.glitch-text .typing-cursor {
    font-size: clamp(3rem, 10vw, 7rem);
    vertical-align: middle;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--color-neon-purple);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-base);
    display: inline-block;
}

.btn-primary {
    background: var(--color-neon-purple);
    color: white;
    box-shadow: var(--shadow-glow),
        0 0 40px rgba(0, 212, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--color-royal-purple);
    box-shadow: var(--shadow-glow-intense),
        0 0 60px rgba(0, 212, 255, 0.25);
}

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

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

.hero-visual-card {
    flex: 1;
    max-width: 550px;
    border-radius: 2.5rem;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(25px);
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    animation: floating 8s ease-in-out infinite;
    will-change: transform;
    margin-left: 2rem;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

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

.header-left,
.header-right {
    display: flex;
    align-items: center;
}

.ai-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.2);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: white;
}

.ai-dot {
    width: 8px;
    height: 8px;
    background: var(--color-neon-purple);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-neon-purple);
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.metric-label {
    font-size: 0.65rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-neon-purple);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.card-body {
    padding: 2rem;
    background: transparent;
}

.terminal-output {
    font-family: 'Fira Code', 'Cascadia Code', monospace;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.output-line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0.4rem 0;
    line-height: 1.5;
}

.prompt {
    color: var(--color-neon-purple);
    font-weight: 700;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.5);
}

.command {
    color: var(--color-text-secondary);
}

.output-line.success .icon {
    color: #22c55e;
    font-weight: 800;
}

.output-line.processing .icon {
    color: var(--color-neon-purple);
    animation: spin 1s linear infinite;
}

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

    to {
        transform: rotate(360deg);
    }
}

.output-line span:not(.icon):not(.prompt):not(.command) {
    color: rgba(255, 255, 255, 0.7);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    text-align: center;
    padding: 1rem 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.stat-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-neon-purple);
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .hero-visual-card {
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-visual-card {
        margin: 2rem 0 0 0;
        width: 100%;
        max-width: 100%;
    }

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

.hero-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;

    pointer-events: none;
    width: 600px;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--color-neon-purple), transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-centered 6s ease-in-out infinite;
}

.orb-core {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--color-deep-purple);
    position: relative;
    box-shadow: inset 0 0 80px var(--color-neon-purple),
        0 0 40px rgba(0, 212, 255, 0.2);
    border: 2px solid rgba(0, 212, 255, 0.4);
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-section .section-header {
    text-align: left;
    margin-left: 0;
}

.orb-right {
    left: auto;
    right: -140px;
    width: 600px;
    height: 600px;
    opacity: 0.8;
    top: 40%;
    transform: translateY(-50%);
}

.orb-right .orb {
    width: 600px;
    height: 600px;
}

.orb-right .orb-core {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, #001a33 0%, #000 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orb-plasma {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at center, rgba(0, 212, 255, 0.4), transparent 60%);
    filter: blur(40px);
    animation: plasma-swirl-centered 10s linear infinite;
    mix-blend-mode: screen;
}

.orb-inner-glow {
    width: 60%;
    height: 60%;
    background: var(--color-neon-purple);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: flicker 3s ease-in-out infinite;
}

.orb-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.orb-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-top-color: var(--color-neon-purple);
    animation: rotate-ring 8s linear infinite;
}

.ring-2 {
    width: 85%;
    height: 85%;
    border-width: 1px;
    border-left-color: var(--color-neon-purple);
    animation: rotate-ring 12s linear reverse infinite;
}

.ring-3 {
    width: 115%;
    height: 115%;
    border-style: dashed;
    border-color: rgba(0, 212, 255, 0.1);
    animation: rotate-ring 20s linear infinite;
}

@keyframes rotate-ring {
    from {
        transform: rotate(0deg) rotateX(45deg);
    }

    to {
        transform: rotate(360deg) rotateX(45deg);
    }
}

@keyframes plasma-swirl-centered {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes pulse-centered {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.25);
        opacity: 0.7;
    }
}

@keyframes flicker {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.9);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.about-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.about-card p {
    color: var(--color-text-secondary);
}

.hover-lift:hover {
    transform: translateY(-10px);
    border-color: var(--color-neon-purple);
    box-shadow: var(--shadow-glow),
        0 0 60px rgba(0, 212, 255, 0.15);
}

.stack-marquee {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    max-width: 100vw;
}

.stack-marquee::before,
.stack-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.stack-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-deep-purple), transparent);
}

.stack-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-deep-purple), transparent);
}

.marquee-content {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.stack-item {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    transition: var(--transition-base);
}

.stack-item:hover {
    color: var(--color-neon-purple);
    text-shadow: 0 0 20px var(--color-neon-purple);
}

.contact-section {
    text-align: center;
}

.contact-wrapper {
    padding: 4rem;
    border-radius: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.1),
        0 0 100px rgba(0, 212, 255, 0.05);
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    margin-top: 2rem;
}

.footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.4;
        filter: blur(80px);
    }

    50% {
        transform: scale(1.25);
        opacity: 0.7;
        filter: blur(100px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-40px) scale(1.05);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-marquee {
    animation: marquee 30s linear infinite;
}

@media (max-width: 768px) {
    .h1 {
        font-size: 3rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        margin-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: none;

    }
}

.cursor {
    width: 8px;
    height: 8px;
    background: var(--color-neon-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.cursor-follower {
    display: none;
}

.cursor-hover .cursor-follower {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(153, 69, 255, 0.1);
    border-color: transparent;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    opacity: 0.5;
    pointer-events: none;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.about-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.hero-text h1 .line {
    overflow: hidden;
    display: block;
}

.hero-text h1 .word {
    transform: translateY(100%);
    display: inline-block;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.hero-text {
    text-align: left;
    max-width: 700px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.hero-description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.hero-buttons {
    justify-content: flex-start;
    margin-top: 2rem;
}

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

@media (min-width: 1200px) {
    .bento-grid {
        margin-left: 0;
        max-width: 900px;
    }
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, minmax(250px, auto));
    }

    .bento-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-card.tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .bento-card.wide {
        grid-column: span 2;
        grid-row: span 1;
    }
}

.bento-card {
    padding: 2.5rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(10, 10, 15, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-card:hover {
    border-color: rgba(138, 43, 226, 0.3);

}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.bento-card>* {
    position: relative;
    z-index: 2;

}

.bento-card h3 {
    font-size: 1.8rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
}

.card-link {
    color: var(--color-text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.card-link:hover {
    color: var(--color-neon-purple);
    padding-left: 5px;
}

.visual-line {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--color-neon-purple), transparent);
    opacity: 0.3;
    margin: 10px 0;
}

.lucide-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--color-neon-purple);
    stroke-width: 2;
    filter: drop-shadow(0 0 5px rgba(138, 43, 226, 0.5));
    transition: all 0.3s ease;
}

.icon-neon {
    width: 2.2rem;
    height: 2.2rem;
    color: var(--color-neon-purple);
    margin-bottom: 1rem;
}

.icon-huge {
    width: 12rem;
    height: 12rem;
    stroke-width: 1.2;
}

.glow-purple {
    filter: drop-shadow(0 0 20px var(--color-neon-purple));
    opacity: 0.8;
}

.bento-card:hover .lucide-icon {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 10px var(--color-neon-purple));
}

.services-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 100vh;
    background-color: transparent;
}

.services-wrapper {
    display: flex;
    justify-content: center;

    align-items: center;

    min-height: 100vh;
    padding: 0;
    position: relative;
    width: 100%;
}

.service-slides {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    perspective: 1500px;

}

.service-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    background-color: transparent;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.service-slide:first-child {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.slide-content {
    flex: 1;
    max-width: 500px;
    z-index: 2;
}

.slide-description {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin: 2rem 0;
}

.slide-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-card {
    width: 440px;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2.5rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: transform 0.1s ease-out, border-color 0.4s, box-shadow 0.4s;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.card-layer-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 40%);
    opacity: 0.5;
    z-index: 0;
}

.card-layer-mid {
    position: absolute;
    inset: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 1.5rem;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255, 255, 255, 0.01) 40px, rgba(255, 255, 255, 0.01) 41px);
    z-index: 1;
    transform: translateZ(20px);
}

.visual-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(168, 85, 247, 0.1);
}

.visual-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(168, 85, 247, 0.2),
            transparent 60%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.visual-card>* {
    position: relative;
    z-index: 2;
}

.visual-icon {
    font-size: 9rem;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.4));
    animation: floating-icon 6s ease-in-out infinite;
    will-change: transform;
    display: block;
    transform: translateZ(60px);
}

@keyframes floating-icon {

    0%,
    100% {
        transform: translate3d(0, 0, 60px) rotate(0deg);
    }

    33% {
        transform: translate3d(5px, -15px, 60px) rotate(2deg);
    }

    66% {
        transform: translate3d(-5px, -10px, 60px) rotate(-1deg);
    }
}

.services-section .feature-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    border-bottom: none;
    transition: color 0.3s ease;
}

.services-section .feature-list li::before {
    content: "[";
    position: absolute;
    left: 0;
    color: #a855f7;
    opacity: 0.6;
    font-weight: 800;
}

.services-section .feature-list li::after {
    content: "]";
    margin-left: 0.5rem;
    color: #a855f7;
    opacity: 0.6;
    font-weight: 800;
}

.services-section .feature-list li:hover {
    color: white;
}

.service-indicators {
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-neon-purple);
    box-shadow: 0 0 10px var(--color-neon-purple);
    transform: scale(1.5);
}

@media (max-width: 900px) {
    .service-slide {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 2rem;
    }

    .visual-card {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
        transform: none;
    }

    .service-indicators {
        display: none;

    }

}

.skills-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 20;
    background: var(--color-deep-purple);
    overflow: hidden;
    display: block !important;
}

.skills-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.skills-section::before,
.skills-section::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 300px;
    z-index: 25;
    pointer-events: none;
}

.skills-section::before {
    top: 0;
    background: linear-gradient(to bottom, var(--color-deep-purple), transparent);
}

.skills-section::after {
    bottom: 0;
    background: linear-gradient(to top, var(--color-deep-purple), transparent);
}

.skills-container-outer {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.skills-track {
    display: flex !important;
    flex-direction: row !important;
    height: 100%;
    width: max-content !important;
    will-change: transform;
}

.skill-slide {
    width: 100vw !important;
    min-width: 100vw !important;
    height: 100vh;
    padding: 0 12vw;
    display: flex !important;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0 !important;
    position: relative;
    gap: 8vw;
}

.skill-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.skill-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: #a855f7;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.skill-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.skill-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 450px;
}

.skill-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    margin-bottom: 4rem;
}

.skill-tech-list li {
    font-size: 0.8rem;
    color: white;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.skill-tech-list li:hover {
    background: rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.skill-level-container {
    width: 100%;
    max-width: 400px;
}

.skill-level-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.skill-level-text span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.level-pct {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.skill-progress-bg {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.skill-progress-bar {
    height: 100%;
    background: #a855f7;
    width: 0;
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.skill-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-circle-outer {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.visual-circle-inner {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lua-text {
    color: white;
    font-weight: 700;
    font-size: 2rem;
    opacity: 0.9;
}

.visual-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ring-dashed {
    width: 280px;
    height: 280px;
    border: 2px dashed rgba(168, 85, 247, 0.2);
    animation: rotate-ring-flat 20s linear infinite;
}

.ring-outer-glow {
    width: 380px;
    height: 380px;
    border: 1px solid rgba(168, 85, 247, 0.1);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.05);
    animation: pulse-glow 4s ease-in-out infinite;
}

.ring-accent {
    width: 200px;
    height: 200px;
    border: 2px solid transparent;
    border-top: 2px solid #a855f7;
    border-right: 2px solid #a855f7;
    animation: rotate-ring-flat 3s linear infinite;
}

.dot-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    box-shadow: 0 0 10px #a855f7;
    animation: float-particle 3s ease-in-out infinite;
}

.skill-visual .visual-circle-inner {
    animation: inner-pulse 6s ease-in-out infinite;
}

@keyframes rotate-ring-flat {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

@keyframes float-particle {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

@keyframes inner-pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(168, 85, 247, 0);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    }
}

@media (max-width: 1024px) {
    .skill-slide {
        flex-direction: column;
        text-align: center;
        padding: 10vh 5vw;
        gap: 4rem;
    }

    .skill-content {
        text-align: center;
    }

    .skill-tech-list {
        justify-content: center;
    }

    .skill-level-container {
        margin: 0 auto;
    }

    .visual-circle-outer {
        width: 250px;
        height: 250px;
    }
}

.works-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
}

.works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, var(--color-deep-purple), transparent);
    z-index: 1;
    pointer-events: none;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.work-card {
    position: relative;
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.work-card:nth-child(even) {
    flex-direction: column;
}

.work-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(0, 212, 255, 0.05),
            transparent 40%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

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

.work-card>* {
    position: relative;
    z-index: 2;
}

.work-card:hover {
    border-color: rgba(168, 85, 247, 0.4);
    background: rgba(20, 20, 30, 0.9);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(168, 85, 247, 0.1);
}

.work-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #0a0a0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.work-card:nth-child(even) .work-image-wrapper {
    border-left: none;

}

.work-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.work-card:hover .work-image-wrapper img {
    transform: scale(1.1);
}

.work-year-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(168, 85, 247, 0.9);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 900;
    z-index: 5;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.4);
}

.work-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.8), transparent);
    z-index: 3;
}

.work-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.work-category {
    font-size: 0.75rem;
    font-weight: 700;
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.25rem;
}

.work-type {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
}

.work-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

.work-meta-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.work-meta-item span {
    color: white;
    font-weight: 600;
}

.work-status {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.status-active {
    color: #22c55e;
    font-weight: 900;
    text-shadow: 0 0 8px rgba(34, 197, 94, 0.4);
}

.status-closed {
    color: #94a3b8;
    opacity: 0.7;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.status-active .status-dot {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.status-closed .status-dot {
    background: #64748b;
}

@media (max-width: 900px) {
    .works-grid {
        gap: 2rem;
    }

    .work-card {
        flex-direction: column !important;
        min-height: auto;
    }

    .work-image-wrapper {
        aspect-ratio: 16 / 9;
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .work-content {
        padding: 1.5rem;
    }
}