/* Core Variables & Reset */
:root {
    --bg-dark: #0a1114;
    --teal-dark: #0d2b33;
    --teal-glow: #008080;
    --orange-primary: #ff6600;
    --orange-glow: #ff7900;
    --text-main: #f0f8ff;
    --text-muted: #8ba4b0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide default cursor */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Space Grotesk', sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--teal-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--orange-primary);
}

/* Background Canvases */
canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}
#cursor-canvas {
    z-index: 9998;
}

/* Custom Rocket Cursor */
#rocket-cursor {
    position: fixed;
    width: 32px;
    height: 32px;
    top: -16px;
    left: -16px;
    pointer-events: none;
    z-index: 9999;
    transform-origin: center;
    will-change: transform;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 17, 20, 0.8);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 128, 128, 0.2);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    /* 3D Bevel and Pulsating Glow */
    text-shadow: 
        1px 1px 0px #000, 
        2px 2px 0px var(--teal-dark),
        0 0 10px var(--teal-glow),
        0 0 20px var(--orange-glow);
    animation: pulse-glow 3s infinite alternate;
}

@keyframes pulse-glow {
    0% { text-shadow: 1px 1px 0px #000, 2px 2px 0px var(--teal-dark), 0 0 5px var(--teal-glow); }
    100% { text-shadow: 1px 1px 0px #000, 2px 2px 0px var(--teal-dark), 0 0 15px var(--teal-glow), 0 0 25px var(--orange-glow); }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--orange-primary);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--orange-primary);
    border: 2px solid var(--orange-primary);
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 15px rgba(255, 102, 0, 0.2) inset, 0 0 20px rgba(255, 102, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--orange-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 25px var(--orange-glow);
    transform: translateY(-2px);
}

/* Sections Global */
section, header {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 10%;
}

/* Hero Section */
#hero {
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 900px;
}

#tilt-heading {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--teal-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Products Section (Bento Grid) */
.section-header {
    margin-bottom: 4rem;
    text-align: left;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--teal-glow);
    margin-bottom: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.bento-card {
    background: rgba(13, 43, 51, 0.3);
    border: 1px solid rgba(0, 128, 128, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.2);
    border-color: var(--teal-glow);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bento-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.accent-card {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(13, 43, 51, 0.3) 100%);
    border-color: rgba(255, 102, 0, 0.3);
}
.accent-card:hover {
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
    border-color: var(--orange-glow);
}

/* Idea Section */
.idea-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: radial-gradient(circle at center, rgba(13,43,51,0.5) 0%, transparent 70%);
}

.idea-container h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--teal-glow);
}

.idea-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Contact Section */
#contact {
    align-items: center;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
    background: rgba(10, 17, 20, 0.6);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.2);
    backdrop-filter: blur(15px);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--orange-glow);
}

.input-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(139, 164, 176, 0.2);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus, .input-group textarea:focus {
    border-color: var(--teal-glow);
    box-shadow: 0 0 15px rgba(0, 128, 128, 0.4);
}

.form-btn {
    width: 100%;
    cursor: none;
}