:root {
    --bg: #090a0c;
    --accent: #b1ff29; /* Lime green */
    --accent-glow: rgba(177, 255, 41, 0.4);
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --card-bg: #111317;
    --card-border: rgba(255, 255, 255, 0.1);
    --font: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: var(--font);
    overflow-x: hidden;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    background: var(--accent);
}
.bg-glow.top-right {
    top: -100px;
    right: -100px;
}
.bg-glow.center-bottom {
    bottom: -100px;
    left: 40%;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.logo-icon {
    color: var(--accent);
    width: 30px;
    height: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}
.nav-links a.active {
    color: var(--text-main);
}
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 40px;
    transition: all 0.3s;
}
.btn-primary {
    background: var(--accent);
    color: #000;
    padding: 12px 24px;
}
.btn-primary:hover {
    background: #9de623;
}

/* Hero Section */
.hero {
    display: flex;
    flex: 1;
    align-items: center;
    margin-top: 40px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-accent {
    color: var(--accent);
}

.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 50px;
}

/* Features Row (4 columns) */
.features-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 60px;
}
.feature-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.f-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
}
.feature-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-col p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* CTA Row */
.cta-row {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-glow {
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    border: 1px solid var(--accent);
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: inset 0 0 20px rgba(177, 255, 41, 0.1), 0 0 20px rgba(177, 255, 41, 0.2);
    transition: all 0.3s;
}
.btn-glow:hover {
    box-shadow: inset 0 0 25px rgba(177, 255, 41, 0.2), 0 0 25px rgba(177, 255, 41, 0.3);
}
.icon-l {
    font-size: 32px;
    color: var(--accent);
}
.btn-text {
    display: flex;
    flex-direction: column;
}
.btn-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 16px;
}
.btn-sub {
    color: var(--text-main);
    font-size: 12px;
}

.btn-outline {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
}
.btn-outline i {
    font-size: 20px;
}

/* Hero Visual Area */
.hero-visual {
    flex: 1.2;
    position: relative;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Center Stage & Lock */
.center-stage {
    position: absolute;
    left: 10%;
    bottom: 25%;
    z-index: 5;
    width: 150px;
    height: 150px;
}

.stage-base {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
}
.base-top {
    position: absolute;
    top: 0;
    width: 100%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(177,255,41,0.5) 0%, rgba(177,255,41,0.1) 60%, transparent 100%);
    border-radius: 50%;
    border: 1px solid rgba(177,255,41,0.3);
}
.base-side {
    position: absolute;
    top: 20px;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(177,255,41,0.2), transparent);
    border-radius: 0 0 50% 50%;
}

.floating-lock {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    width: 90px;
    height: 120px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(177,255,41,0.5));
}
@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -15px); }
}

.lock-shackle {
    position: absolute;
    top: 0;
    left: 15px;
    width: 60px;
    height: 50px;
    border: 12px solid #ddd;
    border-bottom: none;
    border-radius: 30px 30px 0 0;
}
.lock-body {
    position: absolute;
    bottom: 0;
    width: 90px;
    height: 75px;
    background: linear-gradient(135deg, var(--accent), #689e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 15px rgba(255,255,255,0.5);
}
.lock-body i {
    font-size: 32px;
    color: #111;
}

/* Floating App Icons */
.float-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px rgba(177,255,41,0.2);
    border: 1px solid rgba(255,255,255,0.1);
}
.float-icon img { width: 24px; height: 24px; }
.i-chrome { top: -20px; left: -30px; animation: float2 5s ease-in-out infinite; }
.i-whatsapp { top: -40px; right: -20px; animation: float3 6s ease-in-out infinite; }
.i-telegram { top: 30px; right: -50px; animation: float 4.5s ease-in-out infinite; }
.i-vscode { bottom: 0px; left: -60px; animation: float3 5.5s ease-in-out infinite; }
.i-folder { bottom: -20px; right: -30px; animation: float2 4s ease-in-out infinite; }

@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(12px); } }

/* Laptop Mockup Container */
.laptop-container {
    position: absolute;
    right: -100px;
    top: 50px;
    z-index: 1;
    width: 750px;
    transform: perspective(1000px) rotateY(-12deg);
}

.laptop {
    width: 100%;
}

.screen-bezel {
    background: #121417;
    border-radius: 16px 16px 0 0;
    padding: 12px;
    box-shadow: inset 0 0 0 1px #333;
    position: relative;
}
.screen-display {
    background: #000;
    height: 460px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

/* App UI Inside Laptop */
.app-ui {
    background: #121418;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.app-topbar {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: #181b21;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.app-brand {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.app-brand i { color: var(--accent); font-size: 16px;}
.app-pro {
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}
.win-controls {
    margin-left: auto;
    display: flex;
    gap: 15px;
    color: #666;
    font-size: 12px;
}

.app-content {
    padding: 25px 40px;
    flex: 1;
}
.app-content h2 { font-size: 20px; margin-bottom: 4px; font-weight: 500;}
.app-content p { font-size: 12px; color: #888; margin-bottom: 24px;}

.search-box {
    background: #1a1d24;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 10px 15px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.search-box i { color: #666; }
.search-box input {
    background: transparent;
    border: none;
    color: white;
    width: 100%;
    outline: none;
    font-size: 13px;
}

.app-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
}
.list-item:hover { background: rgba(255,255,255,0.02); }
.item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}
.item-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.status-locked {
    color: var(--accent);
    font-size: 11px;
}
.switch {
    width: 34px;
    height: 18px;
    background: var(--accent);
    border-radius: 10px;
    position: relative;
}
.switch::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    background: #111;
    border-radius: 50%;
    right: 2px;
    top: 2px;
}

.add-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    cursor: pointer;
}
.add-btn:hover { background: rgba(255,255,255,0.05); }

.laptop-keyboard-base {
    background: linear-gradient(to bottom, #2a2d35, #121417);
    height: 25px;
    border-radius: 0 0 16px 16px;
    position: relative;
    width: 106%;
    left: -3%;
    border-top: 1px solid #444;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
.trackpad {
    position: absolute;
    width: 100px;
    height: 8px;
    background: #0a0b0d;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Floating Alert Box */
.alert-box {
    position: absolute;
    bottom: -20px;
    right: 50px;
    background: rgba(12, 14, 18, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(177, 255, 41, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    width: 380px;
    z-index: 10;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.a-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.a-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}
.a-brand i { color: var(--accent); }
.a-time { font-size: 11px; color: var(--accent); }

.a-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.a-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}
.a-text span {
    font-size: 12px;
    color: #999;
}
.a-image {
    width: 60px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #333;
}
.a-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
}

/* Bottom Bar */
.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: auto;
}

.b-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.b-item i {
    color: var(--accent);
    font-size: 24px;
}
.b-text h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}
.b-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.b-domain {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    letter-spacing: 1px;
}
.b-domain i { color: var(--accent); }

@media (max-width: 1200px) {
    .hero { flex-direction: column; }
    .hero-content { max-width: 100%; margin-bottom: 60px; }
    .features-row { flex-wrap: wrap; }
    .laptop-container { position: relative; right: auto; top: auto; width: 100%; transform: none; }
    .center-stage { left: 50%; transform: translateX(-50%); }
    .alert-box { right: 50%; transform: translateX(50%); bottom: -50px; }
    .bottom-bar { flex-wrap: wrap; gap: 20px; margin-top: 80px; }
}
