/* Shako Mako Ultimate UI/UX Design System */
:root {
    /* Enhanced Color Palette */
    --cyan-ultrabright: #80EAFF;
    --cyan-bright: #2AD5F6;
    --cyan-mid: #00A4C7;
    --cyan-deep: #007B99;
    --cyan-dark: #004E66;
    
    --bg-void: #0B0F12;
    --bg-dark: #151C22;
    --bg-card: rgba(21, 28, 34, 0.6);
    
    --text-main: #F0F4F8;
    --text-muted: #94A3B8;
    
    /* Neon Glows */
    --glow-cyan: 0 0 10px rgba(42, 213, 246, 0.5), 0 0 20px rgba(42, 213, 246, 0.3);
    --glow-text: 0 0 5px rgba(42, 213, 246, 0.5);
    
    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--cyan-ultrabright), var(--cyan-bright), var(--cyan-mid));
    --gradient-glass: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
    
    /* Layout */
    --header-height: 90px;
    --container-max: 1400px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Outfit', 'Inter', sans-serif; /* Outfit is more futuristic */
    background-color: var(--bg-void);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan-bright);
    box-shadow: 0 0 10px var(--cyan-bright);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(42, 213, 246, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cursor logic handled in JS now */

/* Typography & Utils */
h1, h2, h3, h4 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

.gradient-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(42, 213, 246, 0.2);
}

.section-padding {
    padding: 8rem 2rem;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
}

/* Header */
header {
    height: var(--header-height);
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(11, 15, 18, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo img {
    height: 45px;
    filter: drop-shadow(0 0 5px var(--cyan-bright));
}

.nav-link {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0 1.5rem;
    position: relative;
    transition: 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--cyan-bright);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px var(--cyan-bright);
}

.nav-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.footer-link {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--cyan-bright);
    transform: translateX(5px);
}

.btn-glow {
    background: transparent;
    color: var(--cyan-bright);
    border: 1px solid var(--cyan-bright);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 5px rgba(42, 213, 246, 0.2);
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(42, 213, 246, 0.2), transparent);
    transition: 0.5s;
}

.btn-glow:hover {
    background: var(--cyan-bright);
    color: var(--bg-void);
    box-shadow: 0 0 20px var(--cyan-bright);
}

.btn-glow:hover::before {
    left: 100%;
}

/* Hero Section */
.hero-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: 
        radial-gradient(circle at 20% 30%, rgba(42, 213, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 78, 102, 0.2) 0%, transparent 40%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: rgba(42, 213, 246, 0.1);
    border: 1px solid rgba(42, 213, 246, 0.3);
    color: var(--cyan-bright);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Group */
.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-solid {
    background: var(--gradient-brand);
    color: var(--bg-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    box-shadow: 0 0 20px rgba(42, 213, 246, 0.4);
    transition: transform 0.3s ease;
}

.btn-solid:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px rgba(42, 213, 246, 0.6);
}

/* Glass Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.glass-card {
    background: linear-gradient(145deg, rgba(21, 28, 34, 0.9), rgba(11, 15, 18, 0.95));
    border: 1px solid rgba(42, 213, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Ensure visibility if JS fails */
    opacity: 1; 
    transform: translateY(0);
}

/* Cyberpunk Corner Accent */
.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, transparent 50%, rgba(42, 213, 246, 0.1) 50%);
    transition: 0.3s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--cyan-bright);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 
                inset 0 0 20px rgba(42, 213, 246, 0.1);
}

.glass-card:hover::after {
    background: linear-gradient(135deg, transparent 50%, var(--cyan-bright) 50%);
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(42, 213, 246, 0.1);
    border: 1px solid rgba(42, 213, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--cyan-bright);
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

.glass-card:hover .card-icon-box {
    background: var(--cyan-bright);
    color: var(--bg-void);
    box-shadow: 0 0 20px var(--cyan-bright);
    transform: scale(1.1);
}

.glass-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    transform: translateZ(10px);
}

.glass-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    transform: translateZ(5px);
}

.link-arrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyan-bright);
    font-weight: 600;
    transform: translateZ(15px);
}

.link-arrow i {
    transition: 0.3s;
}

.link-arrow:hover i {
    transform: translateX(5px);
}

/* Section Decor */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: block;
    color: var(--cyan-bright);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #080a0c;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 6rem 0 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: block;
}

.socials {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--cyan-bright);
    color: var(--bg-void);
    box-shadow: 0 0 15px var(--cyan-bright);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .header-inner { padding: 0 1.5rem; }
    .nav-links { display: none; } /* Mobile menu needed */
    .hero-title { font-size: 2.5rem; }
    .card-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
}
