@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Regular_PERSONAL%20USE.otf') format('opentype');
    font-weight: 400;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20Bold_PERSONAL%20USE.otf') format('opentype');
    font-weight: 700;
}
@font-face {
    font-family: 'Made Tommy';
    src: url('../assets/made_tommy/MADE%20TOMMY%20ExtraBold_PERSONAL%20USE.otf') format('opentype');
    font-weight: 800;
}

:root {
    --accent-cyan: #00e6b8;
    --text-white: #ffffff;
    --bg-dark: #000510;
    --glass-bg: rgba(0, 15, 30, 0.5);
    --glass-border: rgba(0, 230, 184, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Made Tommy', sans-serif; scroll-behavior: smooth; }
body { background: var(--bg-dark); color: var(--text-white); overflow-x: hidden; }

/* Global Navbar */
.navbar {
    position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; z-index: 1000; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
}
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links li a { color: var(--text-white); text-decoration: none; font-weight: 500; transition: 0.3s; }
.nav-links li a:hover { color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan); }
.nav-contact { border: 1px solid #00d28f; padding: 8px 20px !important; border-radius: 20px; color: #00d28f !important; transition: 0.3s; }
.nav-contact:hover { background: #00d28f; color: #000 !important; box-shadow: 0 0 15px #00d28f; }

/* Video Backgrounds & Setup */
.scroll-section { position: relative; min-height: 100vh; padding: 100px 5%; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.bg-video { position: absolute; top:0; left:0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.overlay { position: absolute; top:0; left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: -1; }
.features-container { position:relative; z-index:2; width:100%; max-width:1300px; margin:0 auto; }

/* Typography */
h1 { font-size: 4rem; font-weight: 800; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 0 20px rgba(0,0,0,0.8); }
h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 30px; text-shadow: 0 0 15px rgba(0,0,0,0.8); }
.text-cyan { color: var(--accent-cyan); text-shadow: 0 0 15px var(--accent-cyan); }

/* Buttons & Badges */
.btn-mega {
    font-size: 1.3rem; font-weight: 800; padding: 15px 40px; border-radius: 50px; text-decoration: none;
    display: inline-block; cursor: pointer; border: none; transition: 0.3s ease-out; text-transform: uppercase;
}
.neon-cyan-btn {
    background: var(--accent-cyan); color: #000; box-shadow: 0 0 20px var(--accent-cyan);
}
.neon-cyan-btn:hover {
    transform: scale(1.05); box-shadow: 0 0 40px var(--accent-cyan); background: #fff !important;
}
.title-badge {
    display: inline-block; background: var(--accent-cyan); color: #000; padding: 8px 25px; border-radius: 5px;
    font-size: 1rem; font-weight: 800; margin-bottom: 20px; text-transform: uppercase; box-shadow: 0 0 15px var(--accent-cyan);
}

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.icon-container { font-size: 4rem; color: var(--accent-cyan); margin-bottom: 15px; filter: drop-shadow(0 0 15px var(--accent-cyan)); }

.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 30px; transition: 0.3s;
}

/* Bullet list */
.custom-list { list-style: none; padding: 0; margin-top: 15px; text-align: left; }
.custom-list li { margin-bottom: 10px; font-size: 0.95rem; position: relative; padding-left: 20px; }
.custom-list li::before { content: "•"; position: absolute; left: 0; color: var(--accent-cyan); font-weight: bold; font-size: 1.5rem; top: -5px; }
.custom-list ul { margin-top: 10px; padding-left: 20px; list-style-type: circle; color: #fff; }

/* Mockup Layout */
.mockup-layout { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.mockup-image { max-width: 350px; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8)); }

/* Animations */
.section-reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s ease-out; }
.section-reveal.visible { opacity: 1; transform: translateY(0); }
.stagger-item { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.stagger-item.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
    .mockup-layout { flex-direction: column; text-align: center; }
    .mockup-layout .mockup-image { margin: 0 auto 30px; }
    .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .nav-links { display: none; }
}
@media (max-width: 768px) {
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; line-height: 1.2 !important; }
    h3 { font-size: 1.5rem !important; }
    .scroll-section { padding: 60px 5% !important; min-height: auto; }
    .grid-3, .grid-4 { grid-template-columns: 1fr !important; }
    .mockup-image { transform: scale(3.5) !important; max-width: 180px !important; margin-top: 50px !important;}
    .title-badge { font-size: 0.9rem !important; padding: 8px 15px !important; }
    .btn-mega { font-size: 1.1rem !important; padding: 12px 25px !important; }
    footer div { min-width: 100% !important; }
    #hero-btn-container { position: static !important; transform: none !important; margin: 30px auto 0 !important; width: 100%; text-align: center; }
    
    .m-desktop { display: none !important; }
    .m-mobile { display: flex !important; flex-direction: column; gap: 40px; margin-top: 30px; }
    .m-card { background: rgba(0,0,0,0.5); padding: 25px 20px; border-radius: 15px; border-left: 3px solid var(--accent-cyan); text-align: center; }
    .m-img-native {
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto 20px;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.8));
    }
}
